UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

12 lines (11 loc) 270 B
/** * A generic utility for tracking a metric across scopes. */ export declare class Budget { private amount; constructor(initial: number); static unlimited(): Budget; isUnlimited(): boolean; remaining(): number; spend(amount: number): void; }