From 17e148d6d2538006d694c7fc0443cd61b0d3e8b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Sun, 17 Mar 2024 15:29:42 +0100 Subject: [PATCH] Cleanup --- src/tests.ts | 1 - src/util/index.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/tests.ts b/src/tests.ts index de3601a..cb84277 100644 --- a/src/tests.ts +++ b/src/tests.ts @@ -25,7 +25,6 @@ const userExp = ZodSchemaClass( class User extends userExp.extends implements Implements {} const inst = User.create({ id: 1n, name: "User" }) -// console.log(inst.name) const instEffect = User.createEffect({ id: 1n, name: "User" }) diff --git a/src/util/index.ts b/src/util/index.ts index 03b6dcd..bdefda8 100644 --- a/src/util/index.ts +++ b/src/util/index.ts @@ -1,5 +1,4 @@ export * from "./class" export * from "./effect" export * from "./extend" -export * from "./misc" export * from "./zod"