Tone.js/Tone/component/index.ts
Yotam Mann d845a435b1 ScaledEnvelope is redundant with the FrequencyEnvelope
currently no use for it though might reintroduce it if it feels necessary down the road.
2019-10-30 13:22:53 -04:00

27 lines
1,003 B
TypeScript

export * from "./analysis/Analyser";
export * from "./analysis/Meter";
export * from "./analysis/FFT";
export * from "./analysis/DCMeter";
export * from "./analysis/Waveform";
export * from "./analysis/Follower";
export * from "./channel/Channel";
export * from "./channel/CrossFade";
export * from "./channel/Merge";
export * from "./channel/MidSideMerge";
export * from "./channel/MidSideSplit";
export * from "./channel/MultibandSplit";
export * from "./channel/Panner";
export * from "./channel/PanVol";
export * from "./channel/Volume";
export * from "./channel/Solo";
export * from "./channel/Split";
export * from "./dynamics/Compressor";
export * from "./envelope/AmplitudeEnvelope";
export * from "./envelope/Envelope";
export * from "./envelope/FrequencyEnvelope";
export * from "./filter/EQ3";
export * from "./filter/Filter";
export * from "./filter/OnePoleFilter";
export * from "./filter/FeedbackCombFilter";
export * from "./filter/LowpassCombFilter";
export * from "./filter/Convolver";