card-drop/src/contracts/IEventItem.ts

7 lines
152 B
TypeScript
Raw Normal View History

import { EventType } from "../constants/EventType";
export default interface IEventItem {
EventType: EventType,
ExecutionFunction: Function,
}