import { Object3D, AnimationClip } from "three"; export interface ILoaderAsyncParameter { url: string; decoderPath?: string; loadProgress?: (progress: number) => void; indexdb?: boolean; } export interface ILoaderParameter extends ILoaderAsyncParameter { loadEnd?: (object: Object3D, animations?: AnimationClip[]) => void; }