UNPKG

@launchql/migrate

Version:
16 lines (15 loc) 380 B
import { LaunchQLOptions } from '@launchql/types'; interface Extensions { resolved: string[]; external: string[]; } interface DeployFastOptions { opts: LaunchQLOptions; name: string; database: string; dir: string; usePlan: boolean; cache?: boolean; } export declare const deployFast: (options: DeployFastOptions) => Promise<Extensions>; export {};