export type EventFn = (...arg: any[]) => void | Promise; export type EventType = 'load' | 'hit' | 'stageSlideIn' | 'stageSlideOut'; export type LoadEventFn = (status: 'loading' | 'success' | 'fail') => void | Promise;