File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -623,6 +623,8 @@ export interface WavetableOscillator {
623623 */
624624export interface WavetableMidiInstrument {
625625 type : "wavetable" ;
626+ /** UI parameters from the WT-1 rack that are not part of the render core. */
627+ fableParams ?: Record < string , number > ;
626628 oscA : WavetableOscillator ;
627629 oscB : WavetableOscillator ;
628630 /** Sine sub-oscillator level, 0..1. */
@@ -653,6 +655,8 @@ export interface WavetableMidiInstrument {
653655 */
654656export interface BassMidiInstrument {
655657 type : "bass" ;
658+ /** UI parameters from the BL-1 rack that are not part of the render core. */
659+ fableParams ?: Record < string , number > ;
656660 table : MidiWavetableName ;
657661 /** Morph position across the table's frames, 0..1. */
658662 position : number ;
@@ -740,6 +744,8 @@ export interface DrumPad {
740744 */
741745export interface DrumMidiInstrument {
742746 type : "drum" ;
747+ /** UI parameters from the DR-1 rack that are not part of the render core. */
748+ fableParams ?: Record < string , number > ;
743749 /** The MIDI note pad 0 answers to. Pads run `baseNote`..`baseNote + 15`. */
744750 baseNote : number ;
745751 pads : DrumPad [ ] ;
You can’t perform that action at this time.
0 commit comments