mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-16 02:44:51 +00:00
18 lines
387 B
TypeScript
18 lines
387 B
TypeScript
import type {
|
|
HybridView,
|
|
HybridViewMethods,
|
|
HybridViewProps,
|
|
} from "react-native-nitro-modules";
|
|
import type { OmniViewProps } from "../types/view";
|
|
import type { OmniPlayer } from "./omni-player.nitro";
|
|
|
|
export interface Props extends HybridViewProps, OmniViewProps {
|
|
player: OmniPlayer;
|
|
}
|
|
|
|
export type OmniView = HybridView<
|
|
Props,
|
|
HybridViewMethods,
|
|
{ android: "kotlin" }
|
|
>;
|