UNPKG

retrolib

Version:

Render low-res scenes to the canvas in a retro 8-bit era style. Aseprite exported animation wrapper, scene management, sound and image management, particle support.

11 lines (10 loc) 274 B
/** * Helper class to store music tracks and deserialize them from JSON. */ declare class MusicDefinition { name: string; track: HTMLAudioElement; filename: string; static fromJSON(json: object): MusicDefinition & object; } export default MusicDefinition;