@emigrate/cli
Version:
Emigrate is a tool for managing database migrations. It is designed to be simple yet support advanced setups, modular and extensible.
10 lines • 452 B
TypeScript
import { type Config } from '../types.js';
import { type GetMigrationsFunction } from '../get-migrations.js';
type ExtraFlags = {
cwd: string;
force?: boolean;
getMigrations?: GetMigrationsFunction;
};
export default function removeCommand({ directory, reporter: reporterConfig, storage: storageConfig, color, cwd, force, getMigrations, }: Config & ExtraFlags, name: string): Promise<number>;
export {};
//# sourceMappingURL=remove.d.ts.map