1
0

🚨 Fix most of the linting error and warnings

This commit is contained in:
2022-01-06 18:15:56 +01:00
parent 0a18826978
commit 931cc57b1b
18 changed files with 829 additions and 695 deletions

View File

@@ -1,9 +1,10 @@
import { ActionType } from "../../enums/ActionType";
export interface Action {
type: ActionType;
channelId: string;
userId: string;
scheduledAt?: number;
data: any;
type: ActionType;
channelId: string;
userId: string;
scheduledAt?: number;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
data: any;
}