fix(core): update

This commit is contained in:
2020-06-26 00:52:51 +00:00
parent 389f502dd0
commit fa8fb5b622
5 changed files with 1552 additions and 94 deletions

View File

@@ -1,7 +1,7 @@
import * as plugins from './smartrx.plugins';
export interface IEventEmitter<T = any> {
on: (eventNameArg: string, eventHandlerArg: ((eventPayload: T) => any)) => void;
on: (eventNameArg: string, eventHandlerArg: (eventPayload: T) => any) => void;
}
/**