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

    Interface EnvActions

    interface EnvActions {
        get(key: string): string | undefined;
        set(key: string, value?: string): void;
        delete(key: string): void;
        keys(): string[];
        active(): boolean;
        register(env: Env): Env;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods

    • Parameters

      • key: string

      Returns string | undefined

    • Parameters

      • key: string
      • Optionalvalue: string

      Returns void