Interface FactoryProvider<Value>

Factory provider type.

interface FactoryProvider<Value> {
    useFactory: ((...args: []) => Value);
}

Type Parameters

  • Value

Properties

Properties

useFactory: ((...args: []) => Value)