Initial project import
This commit is contained in:
10
node_modules/@react-three/drei/core/CatmullRomLine.d.ts
generated
vendored
Normal file
10
node_modules/@react-three/drei/core/CatmullRomLine.d.ts
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import { Line2 } from 'three-stdlib';
|
||||
import { LineProps } from './Line';
|
||||
import { ForwardRefComponent } from '../helpers/ts-utils';
|
||||
export type CatmullRomLineProps = Omit<LineProps, 'ref' | 'segments'> & {
|
||||
closed?: boolean;
|
||||
curveType?: 'centripetal' | 'chordal' | 'catmullrom';
|
||||
tension?: number;
|
||||
segments?: number;
|
||||
};
|
||||
export declare const CatmullRomLine: ForwardRefComponent<CatmullRomLineProps, Line2>;
|
||||
Reference in New Issue
Block a user