Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 368 Bytes

File metadata and controls

15 lines (10 loc) · 368 Bytes

Home > types-kit > Constructor

Constructor type

Create a constructor type.

Signature:

export type Constructor<T, P extends unknown[] = unknown[]> = new (
  ...args: P
) => T