drupflare/worker - v1.0.0
    Preparing search index...

    Interface MigrationLoader

    Where the manifest and chunks come from. Injected so the gate tests can replay off disk.

    interface MigrationLoader {
        loadChunk: (file: string, index: number) => Promise<MigrationChunk>;
        loadManifest: () => Promise<MigrationManifest>;
    }

    Hierarchy (View Summary)

    Index
    loadChunk: (file: string, index: number) => Promise<MigrationChunk>
    loadManifest: () => Promise<MigrationManifest>