@launchql/core
Version:
LaunchQL Package and Migration Tools
16 lines (15 loc) • 562 B
TypeScript
import { LaunchQLOptions } from '@launchql/types';
import { LaunchQLPackage } from '../core/class/launchql';
interface Extensions {
resolved: string[];
external: string[];
}
export declare const revertProject: (opts: LaunchQLOptions, name: string, database: string, pkg: LaunchQLPackage, options?: {
useTransaction?: boolean;
/**
* Revert to a specific change (exclusive - this change will NOT be reverted)
* Can be a change name or a tag reference (e.g., '@v1.0.0')
*/
toChange?: string;
}) => Promise<Extensions>;
export {};