1 #![allow(unused_imports)]
2 use wasm_bindgen::prelude::*;
3 #[wasm_bindgen]
4 #[doc = "The `BiquadFilterType` enum."]
5 #[doc = ""]
6 #[doc = "*This API requires the following crate features to be activated: `BiquadFilterType`*"]
7 #[derive(Debug, Clone, Copy, PartialEq, Eq)]
8 pub enum BiquadFilterType {
9     Lowpass = "lowpass",
10     Highpass = "highpass",
11     Bandpass = "bandpass",
12     Lowshelf = "lowshelf",
13     Highshelf = "highshelf",
14     Peaking = "peaking",
15     Notch = "notch",
16     Allpass = "allpass",
17 }
18