Initial project import
This commit is contained in:
8
node_modules/@react-three/drei/core/ComputedAttribute.d.ts
generated
vendored
Normal file
8
node_modules/@react-three/drei/core/ComputedAttribute.d.ts
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
import { ThreeElements } from '@react-three/fiber';
|
||||
import * as React from 'react';
|
||||
import { BufferAttribute, BufferGeometry } from 'three';
|
||||
export type ComputedAttributeProps = Omit<ThreeElements['bufferAttribute'], 'args'> & {
|
||||
compute: (geometry: BufferGeometry) => BufferAttribute;
|
||||
name: string;
|
||||
};
|
||||
export declare const ComputedAttribute: ({ compute, name, ...props }: ComputedAttributeProps) => React.JSX.Element;
|
||||
Reference in New Issue
Block a user