Interface ConfiguredManagedValue<Value>

interface ConfiguredManagedValue<Value> {
    cls: {
        prototype: ManagedValue<any>;
        initialize<Value>(_config, _args?): Promise<ManagedValue<Value>>;
        new (config, _params?): ManagedValue<Value>;
    };
    params: ManagedValueParams;
}

Type Parameters

  • Value = any

Properties

Properties

cls: {
    prototype: ManagedValue<any>;
    initialize<Value>(_config, _args?): Promise<ManagedValue<Value>>;
    new (config, _params?): ManagedValue<Value>;
}

Type declaration