supa-seed
Version:
A constraint-aware, framework-agnostic database seeding framework with deep PostgreSQL business logic discovery and MakerKit integration support
24 lines • 693 B
TypeScript
/**
* CLI Commands for Framework Strategy System
*/
export interface FrameworkCommandOptions {
url?: string;
key?: string;
verbose?: boolean;
framework?: string;
}
export declare class FrameworkCommands {
/**
* Detect framework and show strategy information
*/
static detectFramework(options: FrameworkCommandOptions): Promise<void>;
/**
* Test a specific strategy
*/
static testStrategy(strategyName: string, options: FrameworkCommandOptions): Promise<void>;
/**
* List all available strategies
*/
static listStrategies(options: FrameworkCommandOptions): Promise<void>;
}
//# sourceMappingURL=framework-commands.d.ts.map