From 57cab6a29ad4b43d985eafa8069f4cbd178aea70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Sun, 12 May 2024 23:03:56 +0200 Subject: [PATCH] Fix --- src/util/misc.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/util/misc.ts b/src/util/misc.ts index 85b4f9b..c83e71c 100644 --- a/src/util/misc.ts +++ b/src/util/misc.ts @@ -12,8 +12,6 @@ export type CommonKeys = Extract * Represents the static members of a class. * @template Class - A class. */ -export type StaticMembers> = ( - Omit -) +export type StaticMembers> = Omit export function type() { return {} as T }