UNPKG

@shopify/react-native-skia

Version:

High-performance React Native Graphics using Skia

10 lines (9 loc) 474 B
import type { ViewProps } from "react-native"; import { SkiaPictureView } from "../views/SkiaPictureView.web"; export interface NativeProps extends ViewProps { debug?: boolean; opaque?: boolean; nativeID: string; } declare const SkiaPictureViewNativeComponent: ({ nativeID, debug, opaque, onLayout, ...viewProps }: NativeProps) => import("react").CElement<import("..").SkiaPictureViewNativeProps, SkiaPictureView>; export default SkiaPictureViewNativeComponent;