Files
bigtux 20a26affaa 📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final
- MANUAL-VENDAS.md: Estratégia comercial e vendas
- MANUAL-TECNICO.md: Infraestrutura e deploy
- README.md: Visão geral do projeto
2026-02-10 15:08:15 -03:00

9 lines
263 B
TypeScript

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 {};