7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
|
|
||
|
import { EventType } from "../constants/EventType";
|
||
|
|
||
|
export default interface IEventItem {
|
||
|
EventType: EventType,
|
||
|
ExecutionFunction: Function,
|
||
|
}
|