automation-events
Version:
A module which provides an implementation of an automation event list.
12 lines • 474 B
TypeScript
import { TAutomationEvent, TPersistentAutomationEvent } from '../types';
export declare class AutomationEventList {
private _automationEvents;
private _currenTime;
private _defaultValue;
constructor(defaultValue: number);
[Symbol.iterator](): Iterator<TPersistentAutomationEvent>;
add(automationEvent: TAutomationEvent): boolean;
flush(time: number): void;
getValue(time: number): number;
}
//# sourceMappingURL=automation-event-list.d.ts.map