@adviser/cement - v0.0.0
    Preparing search index...

    Interface EnvMap

    interface EnvMap {
        get(key: string): string | undefined;
        set(key: string, value?: string): void;
        delete(key: string): void;
        keys(): string[];
    }

    Hierarchy (View Summary)

    Index

    Methods

    Methods

    • Parameters

      • key: string

      Returns string | undefined

    • Parameters

      • key: string
      • Optionalvalue: string

      Returns void

    • Parameters

      • key: string

      Returns void