UNPKG

react-native-filament

Version:

A real-time physically based 3D rendering engine for React Native

15 lines 673 B
import React, { PropsWithChildren } from 'react'; import { PublicNativeProps } from './FilamentView'; import { RenderCallback } from '../types'; import { ViewStyle } from 'react-native'; type ForwardProps = PublicNativeProps & { style?: ViewStyle; renderCallback?: RenderCallback; }; /** * This is the component actually exposed to the user. It wraps the `FilamentView` and adds the renderCallbacks. * @private */ export declare function FilamentViewWithRenderCallbacks({ children, renderCallback: renderCallbackProp, ...forwardProps }: PropsWithChildren<ForwardProps>): React.JSX.Element; export {}; //# sourceMappingURL=FilamentViewWithRenderCallbacks.d.ts.map