tsc-alias
Version:
Replace alias paths with relative paths after typescript compilation.
12 lines (11 loc) • 410 B
TypeScript
import { IOutput } from '../interfaces';
export declare class Output implements IOutput {
private verb;
debug: (message: string, obj?: unknown) => void;
constructor(verb?: boolean, debugMode?: boolean);
set verbose(value: boolean);
info(message: string): void;
error(message: string, exitProcess?: boolean): void;
clear(): void;
assert(claim: unknown, message: string): void;
}