textlint
Version:
The pluggable linting tool for text and markdown.
12 lines • 343 B
TypeScript
/**
* Logger Utils class
* Use this instead of `console.log`
* Main purpose for helping linting.
*/
export declare class Logger {
static log(...message: any[]): void;
static warn(...message: any[]): void;
static deprecate(message: string): void;
static error(...message: any[]): void;
}
//# sourceMappingURL=logger.d.ts.map