@deepkit/framework
Version:
12 lines (11 loc) • 394 B
TypeScript
import { Command } from '@deepkit/app';
import { DebugController } from '../debug/debug.controller.js';
/**
* @description Prints the current configuration, they type and default value.
*/
export declare class DebugConfigController implements Command {
protected debug: DebugController;
constructor(debug: DebugController);
execute(): Promise<void>;
private logConfigTable;
}