/** * (c) Phan Trung Nguyên * User: nguyenpl117 * Date: 3/14/2020 * Time: 4:26 PM * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import { BaseCommand } from '@tngraphql/console'; import { Router } from '@tngraphql/route'; export declare class RouteListCommand extends BaseCommand { /** * Command name. The command will be registered using this name only. Make * sure their aren't any spaces inside the command name. */ static commandName: string; static description: string; json: boolean; handle(router: Router): Promise; /** * Log message */ log(message: any): void; /** * Output routes a table string */ outputTable(router: any): any; /** * Returns an array of routes as JSON */ outputJSON(router: any): any; }