@theredhead — Frontend Library - v1.0.0
    Preparing search index...

    Interface FileActivateEvent<M>

    Event emitted when a file (non-directory) entry is activated (double-clicked or pressed Enter).

    interface FileActivateEvent<M = unknown> {
        activatedAt: string;
        entry: FileBrowserEntry<M>;
    }

    Type Parameters

    • M = unknown

      Optional metadata type.

    Index

    Properties

    Properties

    activatedAt: string

    ISO-8601 timestamp of the activation.

    Readonlyentry

    The activated file entry.