/** * (c) Phan Trung Nguyên * User: nguyenpl117 * Date: 3/14/2020 * Time: 2:58 PM * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { Kernel as ConsoleKernel } from '@tngraphql/console'; import { Application } from '../Application'; export declare class AceApplication extends ConsoleKernel { static bootstrappers: any[]; constructor(application?: Application); call(command: string, args: any[]): Promise; static starting(callback: (ace: AceApplication) => void): void; /** * Bootstrap the console application. * */ protected bootstrap(): void; /** * Clear the console application bootstrappers. */ static forgetBootstrappers(): void; }