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

12 lines
323 B
TypeScript

import { BaseCommand } from '@adonisjs/core/build/standalone';
export default class ReplCommand extends BaseCommand {
static commandName: string;
static description: string;
static settings: {
loadApp: boolean;
environment: "repl";
stayAlive: boolean;
};
run(): Promise<void>;
}