1
0

🏷️ Add types for actions

This commit is contained in:
2021-12-26 01:12:22 +01:00
parent 71f7546165
commit ca34a6a090
5 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export interface Action {
type: string;
channelId: string;
userId: string;
scheduledAt?: number;
data: any;
}