@onurege3467/zerohelper
Version:
ZeroHelper is a versatile high-performance utility library and database framework for Node.js, fully written in TypeScript.
23 lines (22 loc) • 494 B
TypeScript
export interface CLIOptions {
config: string;
}
export interface DBOptions extends CLIOptions {
table?: string;
count?: number;
format?: string;
output?: string;
}
export interface MigrationOptions extends CLIOptions {
migrationsDir: string;
steps?: number;
}
export interface ImportOptions extends CLIOptions {
table: string;
format: string;
}
export interface ExportOptions extends CLIOptions {
table: string;
format: string;
output: string;
}