UNPKG

@wocker/ws

Version:

Docker workspace for web projects

13 lines (12 loc) 530 B
import { LogService, AppConfigService } from "@wocker/core"; export declare class DebugController { protected readonly appConfigService: AppConfigService; protected readonly logService: LogService; constructor(appConfigService: AppConfigService, logService: LogService); debug(): Promise<string>; setDebug(status: string): Promise<void>; setLog(level: string): Promise<void>; testLog(level: string, args: string[]): Promise<void>; debugCompletion(): Promise<string[]>; getLevels(): string[]; }