collectype / types/collection / FunctionsClass
FunctionsClass<
T> = (items) =>BaseFunctions<T> |FullFunctions<T>
Defined in: types/collection.ts:14
Type for a constructor of a functions class (BaseFunctions or FullFunctions). Used to specify which function class a collection should use for chainable operations.
T
The type of items in the collection.
T[]
BaseFunctions<T> | FullFunctions<T>
class MyFunctions extends BaseFunctions<string> {}
const fnClass: FunctionsClass<string> = MyFunctions;