with dist

This commit is contained in:
Robert Nasarek 2026-06-25 09:19:26 +02:00
parent 05c65aad4d
commit ddd716c0a0
64 changed files with 262892 additions and 1 deletions

View file

@ -0,0 +1,18 @@
/**
* Web-IFC Logging Helper
* @module Logging
*/
export declare enum LogLevel {
LOG_LEVEL_DEBUG = 1,
LOG_LEVEL_WARN = 3,
LOG_LEVEL_ERROR = 4,
LOG_LEVEL_OFF = 6
}
export declare abstract class Log {
private static logLevel;
static setLogLevel(level: number): void;
static log(msg: string, ...args: any[]): void;
static debug(msg: string, ...args: any[]): void;
static warn(msg: string, ...args: any[]): void;
static error(msg: string, ...args: any[]): void;
}