Skip to Content

TDynamicEntity

Type alias representing a dynamically generated entity class.

Defined in: src/shared/type/dynamic-entity.type.ts

type TDynamicEntity<T = object> = new (...arguments_: Array<unknown>) => T;

A constructor type that creates instances of type T. Used for dynamically generated entity classes.

Last updated on