prisma-migrations
Version:
A Node.js library to manage Prisma ORM migrations like other ORMs
11 lines • 343 B
TypeScript
interface ParsedArgs {
command?: string;
args: string[];
options: Record<string, unknown>;
}
declare function parseArgs(argv: string[]): ParsedArgs;
declare function showHelp(): void;
declare function showVersion(): void;
export { parseArgs, showHelp, showVersion };
export type { ParsedArgs };
//# sourceMappingURL=parser.d.ts.map