Interface FactoryProvider<Value>

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

Type Parameters

  • Value

Properties

Properties

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