Binary Raw - Docs
    Preparing search index...

    Interface RecentFileEntry

    Entry in the recently opened files list.

    interface RecentFileEntry {
        format: FileFormat;
        id: string;
        lastOpened: string;
        name: string;
        pinned: boolean;
        size: ByteCount;
        tags: readonly string[];
    }
    Index

    Properties

    format: FileFormat

    Detected file format.

    id: string

    Unique identifier for this file entry.

    lastOpened: string

    ISO timestamp of when the file was last opened.

    name: string

    Display name of the file.

    pinned: boolean

    Whether this file is pinned to the top of the list.

    size: ByteCount

    Size of the file in bytes.

    tags: readonly string[]

    User-defined tags for categorization.