UNPKG

@readyplayerme/visage

Version:

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

14 lines (13 loc) 330 B
import { FC } from 'react'; type CaptureSettingsType = { quality?: number; type?: string; }; export type CaptureType = { trigger: boolean; callBack: (capture?: string) => void; settings?: CaptureSettingsType; }; type CaptureProps = CaptureType; declare const Capture: FC<CaptureProps>; export default Capture;