mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-12 00:49:32 +00:00
15 lines
310 B
TypeScript
15 lines
310 B
TypeScript
import type {
|
|
HybridView,
|
|
HybridViewMethods,
|
|
HybridViewProps,
|
|
} from "react-native-nitro-modules";
|
|
import type { OmniViewProps } from "../types/view";
|
|
|
|
export interface Props extends HybridViewProps, OmniViewProps {}
|
|
|
|
export type OmniView = HybridView<
|
|
Props,
|
|
HybridViewMethods,
|
|
{ android: "kotlin" }
|
|
>;
|