fix: correct FilterOptions import in effect chain
Fixed TypeScript build error by importing FilterOptions instead of non-existent FilterParameters from filters module. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -21,7 +21,7 @@ import type {
|
|||||||
FlangerParameters,
|
FlangerParameters,
|
||||||
PhaserParameters,
|
PhaserParameters,
|
||||||
} from './time-based';
|
} from './time-based';
|
||||||
import type { FilterParameters } from './filters';
|
import type { FilterOptions } from './filters';
|
||||||
|
|
||||||
// Effect type identifier
|
// Effect type identifier
|
||||||
export type EffectType =
|
export type EffectType =
|
||||||
@@ -56,7 +56,7 @@ export type EffectType =
|
|||||||
|
|
||||||
// Union of all effect parameter types
|
// Union of all effect parameter types
|
||||||
export type EffectParameters =
|
export type EffectParameters =
|
||||||
| FilterParameters
|
| FilterOptions
|
||||||
| CompressorParameters
|
| CompressorParameters
|
||||||
| LimiterParameters
|
| LimiterParameters
|
||||||
| GateParameters
|
| GateParameters
|
||||||
|
|||||||
Reference in New Issue
Block a user