UNPKG

@mikro-orm/cli

Version:

TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.

15 lines (14 loc) 395 B
import type { ArgumentsCamelCase } from 'yargs'; import type { BaseArgs, BaseCommand } from '../CLIConfigurator'; type ImportArgs = BaseArgs & { file: string; }; export declare class ImportCommand implements BaseCommand<ImportArgs> { command: string; describe: string; /** * @inheritDoc */ handler(args: ArgumentsCamelCase<ImportArgs>): Promise<void>; } export {};