@ammarahmed/notifee-react-native
Version:
Notifee - a feature rich notifications library for React Native.
13 lines (12 loc) • 383 B
TypeScript
import { EventEmitter, NativeModulesStatic } from 'react-native';
export interface NativeModuleConfig {
version: string;
nativeModuleName: string;
nativeEvents: string[];
}
export default class NotifeeNativeModule {
private readonly _moduleConfig;
constructor(config: NativeModuleConfig);
get emitter(): EventEmitter;
get native(): NativeModulesStatic;
}