From ba11f43ea0d03a4e1a080672cfeb41302627c58a Mon Sep 17 00:00:00 2001 From: griest024 Date: Mon, 13 May 2024 14:49:41 -0400 Subject: [PATCH] feat(core): add type for `Constructable` args (#2783) --- libs/core/src/constructable/constructable.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/core/src/constructable/constructable.ts b/libs/core/src/constructable/constructable.ts index d8f7ad793f..4448fa9b0f 100644 --- a/libs/core/src/constructable/constructable.ts +++ b/libs/core/src/constructable/constructable.ts @@ -21,4 +21,4 @@ * * ``` */ -export type Constructable = new(...args: any[]) => T; +export type Constructable = Array> = new(...args: Args) => T;