@zowe/imperative
Version:
framework for building configurable CLIs
10 lines • 385 B
TypeScript
export interface IConsole {
level: string;
trace(message: string, ...args: any[]): void;
debug(message: string, ...args: any[]): void;
info(message: string, ...args: any[]): void;
warn(message: string, ...args: any[]): void;
error(message: string, ...args: any[]): void;
fatal(message: string, ...args: any[]): void;
}
//# sourceMappingURL=IConsole.d.ts.map