Skip to content

Commit

Permalink
fix: remove IDE warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
boomzero committed Sep 7, 2024
1 parent 4d1bb69 commit 5ae18aa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/Process.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<string> = ["chenlangning", "shanwenxiao", "zhuchenrui2"];
// noinspection JSMismatchedCollectionQueryUpdate
private DenyMessageList: Array<string> = [];
// noinspection JSMismatchedCollectionQueryUpdate
private DenyBadgeEditList: Array<string> = [];
private readonly CaptchaSecretKey: string;
private GithubImagePAT: string;
Expand Down

0 comments on commit 5ae18aa

Please sign in to comment.