@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
9 lines (8 loc) • 446 B
TypeScript
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 log(message?: any, ...optionalParams: any[]): void;
static warn(message?: any, ...optionalParams: any[]): void;
static error(message?: any, ...optionalParams: any[]): void;
}