1
0
This repository has been archived on 2022-01-07. You can view files and clone it, but cannot push or open issues or pull requests.
Files
twitch-channel-redemptions/src/interfaces/actions/Action.ts

11 lines
243 B
TypeScript

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