UNPKG

323 BTypeScriptView Raw
1/**
2 * This emitter is used for sending synthetic native events to listeners
3 * registered in the API layer with `NativeEventEmitter`.
4 */
5declare class SyntheticPlatformEmitter {
6 _emitter: any;
7 emit(eventName: string, props: any): void;
8}
9declare const _default: SyntheticPlatformEmitter;
10export default _default;