This commit is contained in:
ChenX
2023-05-30 18:22:43 +08:00
parent 738c42e64e
commit bf1b1186c1
108 changed files with 389 additions and 272 deletions

View File

@@ -1,6 +1,15 @@
export declare enum LogType {
Error = "ERROR",
Warning = "WARNING",
Info = "INFO",
Command = "COMMAND",
All = "ALL"
}
type LogFunction = (message?: any, ...optionalParams: any[]) => void;
export declare const _LogInjectFunctions: LogFunction[];
export declare function Log(message?: any, ...optionalParams: any[]): void;
export declare const _LogInjectInteractionFunctions: LogFunction[];
export declare function InteractionLog(message?: any, ...optionalParams: any[]): void;
export declare const LogEnable: {
Display: boolean;
};