UNPKG

@readyplayerme/visage

Version:

Easily display Ready Player Me avatars and 3D on the web.

13 lines (12 loc) 303 B
import { FC } from 'react'; import { Group } from 'three'; interface SpawnAnimationProps { avatar: Group; onLoadedAnimationFinish?: () => void; onLoadedAnimation: { src: string; loop?: number; }; } export declare const SpawnAnimation: FC<SpawnAnimationProps>; export {};