UNPKG

soundfont2

Version:

A SoundFont2 parser for Node.js and web browsers

8 lines (7 loc) 253 B
/** * Error class used for all errors encountered during the parsing of the SoundFont 2 file. */ export declare class ParseError extends Error { constructor(message: string); constructor(message: string, expected: string, received: string); }