UNPKG

audio2d

Version:

Easy to use API to add the power of web audio to your game.

16 lines (14 loc) 261 B
'use strict' /** * Describes the structure of a node as returned by `audio2d.nodes`. */ export interface Node { /** * The name of the node. */ name: string; /** * The actual node itself. */ instance: any; }