-
Notifications
You must be signed in to change notification settings - Fork 0
guards.TypeAlias.Constructor
github-actions[bot] edited this page Jun 8, 2026
·
1 revision
@zenstone/ts-utils / guards / Constructor
Constructor<
T> = (...args) =>T
Defined in: src/guards/index.ts:289
可 new 调用的构造函数类型
T = object
...any[]
T
function create<T>(ctor: Constructor<T>): T {
return new ctor();
}