IDISettings Service

Module
import { IDISettings } from "@tsed/di/src/services/InjectorService"
Source/packages/di/src/services/InjectorService.ts

Overview

interface IDISettings {
    get(key: string): any;
    set(key: string, value: any): this;
    [key: string]: any;
}

Members

get(key: string): any

set(key: string, value: any): this

[key: string]: any