adonis-odm
Version:
A comprehensive MongoDB ODM for AdonisJS with Lucid-style API, type-safe relationships, embedded documents, and transaction support
16 lines • 445 B
TypeScript
import { BaseCommand } from '@adonisjs/core/ace';
import { CommandOptions } from '@adonisjs/core/types/ace';
export default class MakeOdmModel extends BaseCommand {
static commandName: string;
static description: string;
static options: CommandOptions;
/**
* The name of the model file.
*/
name: string;
/**
* Execute command
*/
run(): Promise<void>;
}
//# sourceMappingURL=make_odm_model.d.ts.map