0.1.2 #3

Merged
Thilawyn merged 136 commits from next into master 2024-03-11 19:44:21 +01:00
Showing only changes of commit 021928da8c - Show all commits

View File

@@ -1,10 +1,14 @@
import { trait } from "@thilawyn/traitify-ts"
import { expression } from "@thilawyn/traitify-ts"
import { InstantiableZodSchemaObject } from "./InstantiableZodSchemaObject"
export const ObservableZodSchemaObject = trait
.implement(Super => class ObservableZodSchemaObject extends Super {
constructor(...args: any[]) {
super(...args)
}
})
export const ObservableZodSchemaObject = expression
.expresses(InstantiableZodSchemaObject)
.build()
.subtrait()
.implement(Super => class ObservableZodSchemaObject extends Super {
constructor(...args: any[]) {
super(...args)
}
})
.build()