web3d / node_modules /three /src /loaders /AudioLoader.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
228 Bytes
import { LoadingManager } from './LoadingManager';
export class AudioLoader {
constructor(manager?: LoadingManager);
load(
url: string,
onLoad: Function,
onPrgress: Function,
onError: Function
): void;
}