brows3r — TypeScript API
    Preparing search index...

    Interface ListPage

    One page of ListObjectsV2 results.

    The frontend drives infinite scroll by passing nextContinuationToken back as continuationToken on the next call.

    Mirrors src-tauri/src/s3/list.rs ListPage.

    interface ListPage {
        commonPrefixes: string[];
        delimiter?: string;
        entries: ObjectEntry[];
        isTruncated: boolean;
        nextContinuationToken?: string;
        prefix: string;
    }
    Index

    Properties

    commonPrefixes: string[]

    Raw common-prefix strings preserved from the S3 response.

    delimiter?: string

    The delimiter used for this listing request. Absent for flat listings.

    entries: ObjectEntry[]

    All entries for this page — objects and virtual-folder prefixes interleaved. Prefix entries carry isPrefix = true.

    isTruncated: boolean

    Whether S3 indicated the listing was truncated.

    nextContinuationToken?: string

    Continuation token for the next page. Absent when this is the last page.

    prefix: string

    The prefix used for this listing request.