Create types for player & view

This commit is contained in:
2026-04-09 12:52:54 +02:00
parent c71c8fb8f9
commit e1e2fa3f3b
70 changed files with 3499 additions and 369 deletions
+14
View File
@@ -0,0 +1,14 @@
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" }
>;