@endo/compartment-mapper
Version:
The compartment mapper assembles Node applications in a sandbox
10 lines • 752 B
TypeScript
export function parseArchive(archiveBytes: Uint8Array, archiveLocation?: string, options?: ParseArchiveOptions): Promise<Application>;
export function loadArchive(readPowers: ReadFn | ReadPowers, archiveLocation: string, options?: LoadArchiveOptions): Promise<Application>;
export function importArchive(readPowers: ReadFn | ReadPowers, archiveLocation: string, options: LoadArchiveOptions): Promise<SomeObject>;
import type { ParseArchiveOptions } from './types.js';
import type { Application } from './types.js';
import type { ReadFn } from './types.js';
import type { ReadPowers } from './types.js';
import type { LoadArchiveOptions } from './types.js';
import type { SomeObject } from './types.js';
//# sourceMappingURL=import-archive-lite.d.ts.map