Files
2023-11-24 22:35:41 +01:00

14 lines
318 B
TypeScript

import { BaseCommand } from '@adonisjs/core/build/standalone';
export default class MakeSeeder extends BaseCommand {
static commandName: string;
static description: string;
/**
* The name of the seeder file.
*/
name: string;
/**
* Execute command
*/
run(): Promise<void>;
}