tuneflow
Version:
Programmable, extensible music composition & arrangement
34 lines (33 loc) • 1.11 kB
text/typescript
export { TuneflowPlugin } from './base_plugin';
export type { ReadAPIs } from './base_plugin';
export { TuneflowPipeline } from './pipeline';
export { Song } from './models/song';
export type { BarBeat } from './models/song';
export {
Track,
TrackType,
MelodicInstrumentType,
DrumInstrumentType,
AuxTrackData,
TrackSend,
TrackSendPosition,
TrackOutput,
TrackOutputType,
} from './models/track';
export { Clip, ClipType } from './models/clip';
export type { AudioClipData } from './models/clip';
export { Note } from './models/note';
export { StructureMarker, StructureType } from './models/marker';
export { Lyrics, LyricLine, LyricWord } from './models/lyric';
export {
AutomationTarget,
AutomationTargetType,
AutomationData,
AutomationValue,
} from './models/automation';
export type { AutomationPoint } from './models/automation';
export { TempoEvent } from './models/tempo';
export { TimeSignatureEvent } from './models/time_signature';
export { AudioPlugin } from './models/audio_plugin';
export * from './descriptors/index';
export * from './utils';