swiftui-react-native
Version:
A React Native component library inspired by SwiftUI
10 lines (9 loc) • 324 B
TypeScript
import { NativeSyntheticEvent } from 'react-native';
import { Modifiers } from './modifiers';
export declare function onBaseEvent(e: NativeSyntheticEvent<{
[key: string]: any;
}>, modifiers: Modifiers, extraEvents?: {
[key: string]: (e?: NativeSyntheticEvent<{
[key: string]: any;
}>) => void;
}): void;