From 0a80cb1bbd8d3b938f08bfad6c0e52cc527c2ca1 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Thu, 14 Nov 2024 01:09:00 -0800 Subject: [PATCH] Remove unused `InstanceProperties` type --- src/types.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/types.ts b/src/types.ts index 75f6edb..c050f9b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -221,10 +221,6 @@ export interface IPath2D { ): void; } -export type InstanceProperties = { - [K in keyof T]: T[K]; -}; - export interface Point { x: number; y: number;