spacesvr-websessions
Version:
A standardized reality for future of the 3D Web
8 lines (7 loc) • 384 B
TypeScript
import { NamedArrayTuple } from "@react-three/drei/helpers/ts-utils";
import { GroupProps, MeshProps } from "@react-three/fiber";
declare type RoundedBox = {
args?: NamedArrayTuple<(width?: number, height?: number, depth?: number) => void>;
} & Pick<MeshProps, "material"> & Omit<GroupProps, "args">;
export declare function RoundedBox(props: RoundedBox): JSX.Element;
export {};