@syzlm/evaluator
Version:
javascript模版计算引擎
19 lines (18 loc) • 599 B
TypeScript
export declare const setOptions: (opts: {
debug: boolean;
}) => void;
declare function printError(title: any, ...args: any[]): void;
declare function printInfo(title: any, ...args: any[]): void;
declare function printWarning(title: any, ...args: any[]): void;
declare function printSuccess(title: any, ...args: any[]): void;
declare const print: {
error: typeof printError;
info: typeof printInfo;
warn: typeof printWarning;
warning: typeof printWarning;
success: typeof printSuccess;
setOptions: (opts: {
debug: boolean;
}) => void;
};
export default print;