From 2a5e86b781ce79d3cebdedb28d59f237e6524e6b Mon Sep 17 00:00:00 2001 From: Peter Beverloo Date: Fri, 26 Jan 2024 21:31:05 +0000 Subject: [PATCH] Remove TypeUtilities.ts as it's no longer used --- app/lib/TypeUtilities.ts | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 app/lib/TypeUtilities.ts diff --git a/app/lib/TypeUtilities.ts b/app/lib/TypeUtilities.ts deleted file mode 100644 index 5baac932..00000000 --- a/app/lib/TypeUtilities.ts +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright 2023 Peter Beverloo & AnimeCon. All rights reserved. -// Use of this source code is governed by a MIT license that can be found in the LICENSE file. - -/** - * Type referring to a constructor that, when invoked, yields an object that corresponds to T. - */ -export type Constructor = new (...args: any[]) => T;