securityos/node_modules/next/dist/shared/lib/mitt.d.ts

9 lines
263 B
TypeScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
type Handler = (...evts: any[]) => void;
export type MittEmitter<T> = {
on(type: T, handler: Handler): void;
off(type: T, handler: Handler): void;
emit(type: T, ...evts: any[]): void;
};
export default function mitt(): MittEmitter<string>;
export {};