adding categories

This commit is contained in:
Yotam Mann 2019-10-29 23:12:51 -04:00
parent 97cdc5bf07
commit affe2e75de
2 changed files with 2 additions and 0 deletions

View file

@ -22,6 +22,7 @@ export interface AutoFilterOptions extends LFOEffectOptions {
* const autoFilter = new AutoFilter("4n").toDestination().start();
* // route an oscillator through the filter and start it
* const oscillator = new Oscillator().connect(autoFilter).start();
* @category Effect
*/
export class AutoFilter extends LFOEffect<AutoFilterOptions> {

View file

@ -15,6 +15,7 @@ export type AutoPannerOptions = LFOEffectOptions;
* const autoPanner = new AutoPanner("4n").toDestination().start();
* // route an oscillator through the panner and start it
* const oscillator = new Oscillator().connect(autoPanner).start();
* @category Effect
*/
export class AutoPanner extends LFOEffect<AutoPannerOptions> {