UNPKG

@perry-rylance/midi-to-milliseconds

Version:

TypeScript library for resolving MIDI event times to milliseconds. Useful for syncing things like graphics to MIDI.

13 lines (12 loc) 300 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class TimeResolvedEvent { constructor(event, absolute = { ticks: 0, milliseconds: 0 }) { this.original = event; this.absolute = absolute; } } exports.default = TimeResolvedEvent;