UNPKG

@threlte/extras

Version:

Utilities, abstractions and plugins for your Threlte apps

11 lines (10 loc) 281 B
import type { Props as ThrelteProps } from '@threlte/core'; import type { MeshBasicMaterial } from 'three'; type Props = { /** * the color of the gradient */ color: string; }; export type ShadowProps = Partial<Props> & ThrelteProps<MeshBasicMaterial>; export {};