first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

15
node_modules/expo-modules-core/build/EventEmitter.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
import { EventsMap } from './ts-declarations/EventEmitter';
import type { ExpoGlobal } from './ts-declarations/global';
/**
* A subscription object that allows to conveniently remove an event listener from the emitter.
*/
export interface EventSubscription {
/**
* Removes an event listener for which the subscription has been created.
* After calling this function, the listener will no longer receive any events from the emitter.
*/
remove(): void;
}
export type EventEmitter<TEventsMap extends EventsMap = Record<never, never>> = typeof ExpoGlobal.EventEmitter<TEventsMap>;
export declare const EventEmitter: typeof ExpoGlobal.EventEmitter;
//# sourceMappingURL=EventEmitter.d.ts.map