Skip to main content
zerotal

Documentation


Documentation / @zerotal/flow / index / Constructor

Type Alias: Constructor<T>

Constructor<T> = (...args) => T

Defined in: flow/src/mixins.ts:53

A class constructor. Abstract-aware (abstract new …) so the abstract Component base — and mixin classes that don't yet implement render() — satisfy it. Use Constructor<Component> as a mixin's base bound to require a Component lineage.

Type Parameters

T

T = object

Parameters

args

...any[]

Returns

T