0.1.2 #3

Merged
Thilawyn merged 136 commits from next into master 2024-03-11 19:44:21 +01:00
3 changed files with 2 additions and 2 deletions
Showing only changes of commit 65602eac7d - Show all commits

View File

@@ -1,7 +1,7 @@
import { abstract, trait } from "@thilawyn/traitify-ts" import { abstract, trait } from "@thilawyn/traitify-ts"
import { AbstractClass } from "type-fest" import { AbstractClass } from "type-fest"
import { z } from "zod" import { z } from "zod"
import { ZodSchemaAbstractClass } from "../types/ZodSchemaClass" import { ZodSchemaAbstractClass } from "../shapes/ZodSchemaClass"
import { Extend, StaticMembers } from "../util" import { Extend, StaticMembers } from "../util"

View File

@@ -2,7 +2,7 @@ import { abstract, trait } from "@thilawyn/traitify-ts"
import { Effect, pipe } from "effect" import { Effect, pipe } from "effect"
import { HasRequiredKeys } from "type-fest" import { HasRequiredKeys } from "type-fest"
import { z } from "zod" import { z } from "zod"
import { ZodSchemaClass } from "../types/ZodSchemaClass" import { ZodSchemaClass } from "../shapes/ZodSchemaClass"
import { parseZodTypeEffect } from "../util" import { parseZodTypeEffect } from "../util"