UNPKG

@oaklean/profiler-core

Version:

Part of the @oaklean suite. It provides all basic functions to work with the `.oak` file format. It allows parsing the `.oak` file format as well as tools for analyzing the measurement values. It also provides all necessary capabilities required for prec

19 lines (18 loc) 1.12 kB
export declare class LoggerHelper { static logString(message?: any, ...optionalParams: any[]): string; static warnString(message?: any, ...optionalParams: any[]): string; static errorString(message?: any, ...optionalParams: any[]): string; static successString(message?: any, ...optionalParams: any[]): string; static log(message?: any, ...optionalParams: any[]): void; static warn(message?: any, ...optionalParams: any[]): void; static error(message?: any, ...optionalParams: any[]): void; static success(message?: any, ...optionalParams: any[]): void; static table(tabularData: any, properties?: string[] | undefined): void; static appPrefix: { log: (message?: string, ...optionalParams: any[]) => void; warn: (message?: string, ...optionalParams: any[]) => void; error: (message?: string, ...optionalParams: any[]) => void; success: (message?: string, ...optionalParams: any[]) => void; }; static treeStyleKeyValues<KEYS extends string[]>(keys: KEYS, forcedIndentation?: number): (entries: Record<KEYS[number], string>) => string; }