Augmentable interface for app-specific messages
Applications should augment this interface with their message types:
// In apps/backend/src/i18n/types.tsimport type * as appEn from 'stratal/i18n/messages/en'declare module 'stratal' { interface AppMessages extends typeof appEn {}} Copy
// In apps/backend/src/i18n/types.tsimport type * as appEn from 'stratal/i18n/messages/en'declare module 'stratal' { interface AppMessages extends typeof appEn {}}
Augmentable interface for app-specific messages
Applications should augment this interface with their message types:
Example