diff --git a/Source/Process.ts b/Source/Process.ts index df24d84..3af44d7 100644 --- a/Source/Process.ts +++ b/Source/Process.ts @@ -38,13 +38,16 @@ interface Environment { AI: any; } +// noinspection JSUnusedLocalSymbols function sleep(time: number) { return new Promise((resolve) => setTimeout(resolve, time)); } export class Process { private AdminUserList: Array = ["chenlangning", "shanwenxiao", "zhuchenrui2"]; + // noinspection JSMismatchedCollectionQueryUpdate private DenyMessageList: Array = []; + // noinspection JSMismatchedCollectionQueryUpdate private DenyBadgeEditList: Array = []; private readonly CaptchaSecretKey: string; private GithubImagePAT: string;