yao-node-client
Version:
A node client for yao application development
13 lines (12 loc) • 401 B
TypeScript
/**
* 日志对象
*/
export declare const log: {
Trace(format: string, ...args: any[]): any;
Debug(format: string, ...args: any[]): any;
Info(format: string, ...args: any[]): any;
Warn(format: string, ...args: any[]): any;
Error(format: string, ...args: any[]): any;
Fatal(format: string, ...args: any[]): any;
Panic(format: string, ...args: any[]): any;
};