UNPKG

react-native-filament

Version:

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

11 lines 540 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; }; export declare function FilamentViewWithRenderCallbacks({ children, renderCallback: renderCallbackProp, ...forwardProps }: PropsWithChildren<ForwardProps>): React.JSX.Element; export {}; //# sourceMappingURL=FilamentViewWithRenderCallbacks.d.ts.map