UNPKG

react-native-ios-utilities

Version:
11 lines 453 B
/// <reference types="react-native/types/modules/Codegen" /> import type { BubblingEventHandler } from 'react-native/Libraries/Types/CodegenTypes'; export type OnDidSetViewIDEventPayload = Readonly<{ viewID: string; reactTag: number; }>; export type OnDidSetViewIDEvent = BubblingEventHandler<OnDidSetViewIDEventPayload>; export type SharedViewEvents = { onDidSetViewID: OnDidSetViewIDEvent; }; //# sourceMappingURL=SharedViewEvents.d.ts.map