UNPKG

@promptbook/remote-server

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

17 lines (16 loc) 718 B
import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson'; import type { string_filename } from '../../types/typeAliases'; import type { FilesystemTools } from '../../execution/FilesystemTools'; /** * Loads the books from the archive file with `.bookc` extension * * @param filePath Path to the archive file with `.bookc` extension * @param fs Filesystem tools * @returns Pipelines loaded from the archive * * @private utility of Prompbook */ export declare function loadArchive(filePath: string_filename, fs: FilesystemTools): Promise<Array<PipelineJson>>; /** * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment */