UNPKG

audio2d

Version:

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

14 lines (13 loc) 245 B
/** * 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; }