Stratal API Reference
    Preparing search index...

    Interface ModuleConfig

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