import type { FilterFunction } from "../../types"; import type { ISoundsAudio } from "./ISoundsAudio"; import type { ISoundsMelody } from "./ISoundsMelody"; import type { ISoundsNote } from "./ISoundsNote"; import type { SingleOrMultiple } from "tsparticles-engine"; export interface ISoundsEvent { audio?: SingleOrMultiple; event: SingleOrMultiple; filter?: string | FilterFunction; melodies?: ISoundsMelody[]; notes?: ISoundsNote[]; }