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

    Interface LocalSyncFolder

    A sync folder constrained to the local filesystem.

    interface LocalSyncFolder {
        root: string;
        type: "local";
        scan(): AsyncIterable<SyncPath>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    root: string

    Absolute filesystem path to the local root directory.

    type: "local"

    Discriminant identifying a local folder.

    Methods