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