Configuration that can be augmented by applications Apps should augment this interface with their AppConfig type using module augmentation
// In your app (e.g., apps/backend/src/config/types.ts)declare module 'stratal' { interface ModuleConfig { database: { url: string; maxConnections: number } email: { provider: string; from: { name: string; email: string } } }} Copy
// In your app (e.g., apps/backend/src/config/types.ts)declare module 'stratal' { interface ModuleConfig { database: { url: string; maxConnections: number } email: { provider: string; from: { name: string; email: string } } }}
Configuration that can be augmented by applications Apps should augment this interface with their AppConfig type using module augmentation
Example