/** * The type describing the general structure of generic event parameters. */ interface Events { [key: string]: { [key: string]: unknown; }; } export type { Events };