Briyah SDK - v2.0.6
    Preparing search index...

    Interface IConfigService

    Minimal interface for environment-variable configuration access.

    Implemented by both NestJS ConfigService (from @nestjs/config) and BriyahConfigService so consumers can read env-derived settings without coupling to either implementation.

    interface IConfigService {
        get<T = string>(key: string, defaultValue?: T): T;
    }

    Implemented by

    Index
    • Type Parameters

      • T = string

      Parameters

      • key: string
      • OptionaldefaultValue: T

      Returns T