Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
559 B
Plaintext
15 lines
559 B
Plaintext
import type { ParsedArgs } from 'minimist';
|
|
import type { SanitizedConfig } from '../config/types.js';
|
|
export declare const availableCommands: string[];
|
|
type Args = {
|
|
config: SanitizedConfig;
|
|
/**
|
|
* Override the migration directory. Useful for testing when the CWD differs
|
|
* from where the test config expects migrations to be stored.
|
|
*/
|
|
migrationDir?: string;
|
|
parsedArgs: ParsedArgs;
|
|
};
|
|
export declare const migrate: ({ config, migrationDir, parsedArgs }: Args) => Promise<void>;
|
|
export {};
|
|
//# sourceMappingURL=migrate.d.ts.map |