@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface SyncFolder

    A scannable folder (local or B2) that yields files in sorted order.

    interface SyncFolder {
        type: "b2" | "local";
        scan(): AsyncIterable<SyncPath>;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    Methods

    Properties

    type: "b2" | "local"

    Whether this folder is local or in B2.

    Methods