brows3r — TypeScript API
    Preparing search index...

    Interface Bookmark

    A persisted sidebar bookmark.

    Mirrors src-tauri/src/bookmarks.rs Bookmark.

    interface Bookmark {
        bucket: string;
        createdAt: number;
        id: string;
        label?: string;
        prefix: string;
        profileId: string;
    }
    Index

    Properties

    bucket: string

    S3 bucket name.

    createdAt: number

    Unix epoch milliseconds of creation time.

    id: string

    UUID v4.

    label?: string

    Human-readable label. Falls back to prefix in the UI when absent.

    prefix: string

    S3 prefix. Empty string = bucket root.

    profileId: string

    Credential profile this bookmark belongs to.