mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-16 02:44:51 +00:00
13 lines
314 B
TypeScript
Executable File
13 lines
314 B
TypeScript
Executable File
import type {
|
|
HybridView,
|
|
HybridViewProps,
|
|
HybridViewMethods,
|
|
} from 'react-native-nitro-modules'
|
|
|
|
export interface OmniProps extends HybridViewProps {
|
|
isRed: boolean
|
|
}
|
|
|
|
export interface OmniMethods extends HybridViewMethods {}
|
|
|
|
export type Omni = HybridView<OmniProps, OmniMethods, { android: 'kotlin' }> |