UNPKG

@launchql/migrate

Version:
17 lines (16 loc) 444 B
export interface SqitchRow { deploy: string; revert?: string; verify?: string; content: string; deps?: string[]; name?: string; } interface WriteOptions { outdir: string; name: string; replacer: (str: string) => string; } export declare const writeSqitchFiles: (rows: SqitchRow[], opts: WriteOptions) => void; export declare const writeSqitchPlan: (rows: SqitchRow[], opts: WriteOptions) => void; export {};