@react-three/drei
Version:
useful add-ons for react-three-fiber
6 lines (5 loc) • 301 B
TypeScript
import * as THREE from 'three';
import { ForwardRefComponent } from '../helpers/ts-utils';
import { ThreeElements } from '@react-three/fiber';
export type ScreenQuadProps = Omit<ThreeElements['mesh'], 'ref' | 'args'>;
export declare const ScreenQuad: ForwardRefComponent<ScreenQuadProps, THREE.Mesh>;