UNPKG

react-native-bottom-sheets

Version:

A tiny wrapper around @gorhom/bottom-sheet to make it easier to use in react-native projects.

9 lines (8 loc) 278 B
import { EventCallback } from "../types"; declare class EventEmitter { private events; emit(event: string, ...args: any[]): void; on(event: string, callback: EventCallback): void; off(event: string, callback: EventCallback): void; } export default EventEmitter;