mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 07:46:21 +02:00
14 lines
318 B
TypeScript
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>;
|
|
}
|