From 5ae18aad74293fa02279a717866d4606e1193b85 Mon Sep 17 00:00:00 2001 From: boomzero Date: Sat, 7 Sep 2024 12:42:51 +0800 Subject: [PATCH] fix: remove IDE warnings --- Source/Process.ts | 3 +++ 1 file changed, 3 insertions(+) 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;