UNPKG

convex

Version:

Client for the Convex Cloud

16 lines 852 B
import { Filesystem } from "./fs.js"; export { nodeFs, RecordingFs } from "./fs.js"; export type { Filesystem } from "./fs.js"; export declare function walkDir(fs: Filesystem, dirPath: string): Generator<string, void, void>; export interface Bundle { path: string; source: string; sourceMap?: string; } export declare class BundleError extends Error { } export declare function bundle(fs: Filesystem, dir: string, entryPoints: string[], generateSourceMaps: boolean): Promise<Bundle[]>; export declare function bundleAll(fs: Filesystem, dir: string, generateSourceMaps: boolean, verbose: boolean): Promise<Bundle[]>; export declare function bundleSchema(fs: Filesystem, dir: string): Promise<Bundle[]>; export declare function entryPoints(fs: Filesystem, dir: string, verbose: boolean): Promise<string[]>; //# sourceMappingURL=index.d.ts.map