export interface ILoggingInfo { type?: LOG_TYPE; functionName: string; useParameter?: any | null; returnValue?: any | null; message?: string; startTime: number; } export interface IlogValue { mapId: string; type: LOG_TYPE; function: string; runTime?: string | undefined; parameter: any; } export declare enum LOG_TYPE { WARN = "WARN", ERROR = "ERROR", USE = "USE", START = "START", END = "END" } export declare enum LOG_DEFAULT_MESSAGE { USE = "use function", START = "start function", END = "end function" } export interface IlogUserInfo { userId: string | undefined; dabeeoMapsId: string; }