Implement view

This commit is contained in:
2026-04-10 20:12:34 +02:00
parent fd40915bc9
commit 626380bcc4
14 changed files with 126 additions and 30 deletions
+4 -1
View File
@@ -4,8 +4,11 @@ import type {
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 {}
export interface Props extends HybridViewProps, OmniViewProps {
player: OmniPlayer;
}
export type OmniView = HybridView<
Props,