UNPKG

318 BTypeScriptView Raw
1import { BaseCommand } from '@adonisjs/core/build/standalone';
2export default class MakeSeeder extends BaseCommand {
3 static commandName: string;
4 static description: string;
5 /**
6 * The name of the seeder file.
7 */
8 name: string;
9 /**
10 * Execute command
11 */
12 run(): Promise<void>;
13}