@joker.front/cli
Version:
The Next-Generation Front-End Toolchain: Swift, Efficient, and Adaptive.
21 lines (20 loc) • 377 B
TypeScript
export declare namespace logger {
/**
* 信息
* @param tag
* @param content
*/
function info(content: any): void;
/**
* 警告
* @param tag
* @param content
*/
function warn(content: any): void;
/**
* 错误
* @param tag
* @param content
*/
function error(content: any, err?: Error): void;
}