mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 22:59:40 +02:00
- Add comprehensive analytics.ts with type-safe event tracking - Include app-specific event helpers (Auth, Landing, Chat, Picture, Todo, Calendar, Clock, Contacts, ManaDeck, Subscription, App events) - Export from shared-utils package - Add complete documentation in docs/ANALYTICS.md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
30 lines
496 B
TypeScript
30 lines
496 B
TypeScript
/**
|
|
* Shared utility functions for Manacore monorepo
|
|
*/
|
|
|
|
// Date utilities
|
|
export * from './date';
|
|
|
|
// String utilities
|
|
export * from './string';
|
|
|
|
// Async utilities
|
|
export * from './async';
|
|
|
|
// Format utilities
|
|
export * from './format';
|
|
|
|
// Validation utilities
|
|
export * from './validation';
|
|
|
|
// Keyboard shortcuts
|
|
export * from './keyboard';
|
|
|
|
// IndexedDB Cache
|
|
export * from './cache';
|
|
|
|
// Natural Language Parsers
|
|
export * from './parsers';
|
|
|
|
// Umami Analytics
|
|
export * from './analytics';
|