brows3r — TypeScript API
    Preparing search index...

    Interface EntryRef

    A single search result entry.

    Mirrors src-tauri/src/search/mod.rs EntryRef.

    Intentionally thinner than ObjectEntry — only the fields needed to render a result row. Extending with etag or storageClass is additive.

    interface EntryRef {
        isPrefix: boolean;
        key: string;
        lastModified?: number;
        size: number;
    }
    Index

    Properties

    isPrefix: boolean

    true when this entry represents a virtual-folder prefix.

    key: string

    Full S3 key (or common-prefix string for virtual folders).

    lastModified?: number

    Last-modified Unix timestamp in milliseconds. Absent for prefix entries.

    size: number

    Object size in bytes. Always 0 for prefix entries.