UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

15 lines 423 B
export class SoundAssetLoader extends AssetLoader<any, any> { /** * * @param {AudioContext} context */ constructor(context: AudioContext); /** * * @type {AudioContext} */ audioContext: AudioContext; load(scope: any, path: any, success: any, failure: any, progress: any): void; } import { AssetLoader } from "./AssetLoader.js"; //# sourceMappingURL=SoundAssetLoader.d.ts.map