Stone.js API
    Preparing search index...

    Backend-agnostic metadata for a stored file/object.

    interface StorageStat {
        isDirectory: boolean;
        isFile: boolean;
        lastModified?: number;
        mimeType?: string;
        path: string;
        size: number;
    }
    Index
    isDirectory: boolean

    Whether this entry is a directory/prefix.

    isFile: boolean

    Whether this entry is a regular file/object.

    lastModified?: number

    Last-modified time in epoch milliseconds, if known.

    mimeType?: string

    Best-effort MIME type, if known.

    path: string

    The path (relative to the disk root).

    size: number

    Size in bytes.