From 8af604831bf34a079572606f8d083d144c578673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Sat, 3 Feb 2024 04:18:31 +0100 Subject: [PATCH] Cleanup --- src/trait.ts | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/trait.ts b/src/trait.ts index b51ec0f..e5608cb 100644 --- a/src/trait.ts +++ b/src/trait.ts @@ -27,20 +27,6 @@ type RemoveAbstractFromImpl< ) -// export type TraitTag = "@thilawyn/traitify-ts/Trait" - -// export type Trait< -// Abstract extends {}, -// Impl extends Class<{}, []>, -// > = ( -// Opaque<{ -// readonly apply: TraitApplier< -// Abstract, -// AddAbstractToImpl -// > -// }, TraitTag> -// ) - export class Trait< Abstract extends {}, Impl extends Class<{}, []>,