u-he-preset-randomizer
Version:
Create random u-he synth presets through randomization and merging of your existing presets.
15 lines (14 loc) • 559 B
TypeScript
import { Config } from "src/config.js";
export type DetectedPresetLibrary = {
synthName: SynthNames;
root: string;
presets: string;
userPresets: string;
};
declare const uheSynthNames: readonly ["ACE", "Bazille", "Diva", "Hive", "Repro-1", "Repro-5", "Zebra2", "ZebraHZ", "Zebralette3", "Zebra3", "TyrellN6", "Podolski", "TripleCheese"];
export type SynthNames = typeof uheSynthNames[number];
/**
* Detects Preset Library locations
*/
export declare function detectPresetLibraryLocations(config: Config): DetectedPresetLibrary[];
export {};