react-native-ios-utilities
Version:
Utilities for react-native + iOS
11 lines • 453 B
TypeScript
/// <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