Cleanup
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Julien Valverdé
2024-03-17 15:29:42 +01:00
parent c672e1f2bb
commit 17e148d6d2
2 changed files with 0 additions and 2 deletions

View File

@@ -25,7 +25,6 @@ const userExp = ZodSchemaClass(
class User extends userExp.extends implements Implements<typeof userExp> {} class User extends userExp.extends implements Implements<typeof userExp> {}
const inst = User.create({ id: 1n, name: "User" }) const inst = User.create({ id: 1n, name: "User" })
// console.log(inst.name)
const instEffect = User.createEffect({ id: 1n, name: "User" }) const instEffect = User.createEffect({ id: 1n, name: "User" })

View File

@@ -1,5 +1,4 @@
export * from "./class" export * from "./class"
export * from "./effect" export * from "./effect"
export * from "./extend" export * from "./extend"
export * from "./misc"
export * from "./zod" export * from "./zod"