@shopify/react-native-skia
Version:
High-performance React Native Graphics using Skia
12 lines (11 loc) • 457 B
TypeScript
import { type ViewProps } from "react-native";
import type { WithDefault } from "react-native/Libraries/Types/CodegenTypes";
export interface NativeProps extends ViewProps {
debug?: boolean;
opaque?: boolean;
colorSpace?: string;
androidWarmup?: boolean;
pointerEvents?: WithDefault<"auto" | "none" | "box-none" | "box-only", "auto">;
}
declare const _default: import("react-native").HostComponent<NativeProps>;
export default _default;