Interface ConfiguredManagedValue<Value>

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

Type Parameters

  • Value = any

Properties

Properties

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