@viewdo/dxp-story-cli
Version:
DXP Story Management CLI
15 lines (14 loc) • 431 B
TypeScript
import { ConventionService } from "./ConventionService";
import "colors";
export declare class ConsoleService {
private conventions;
constructor(conventions: ConventionService);
prefix: string;
debug_flag: boolean;
log(message: string): void;
warn(message: string): void;
debug(message: string): void;
dir(object: object): void;
info(message: string): void;
error(message?: string): void;
}