Fixed instance inference
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
12
src/traits/ObservableZodSchemaObject.ts
Normal file
12
src/traits/ObservableZodSchemaObject.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
import { abstract, trait } from "@thilawyn/traitify-ts"
|
||||
|
||||
|
||||
export const ObservableZodSchemaObject = trait(
|
||||
abstract(),
|
||||
|
||||
Super => class ObservableZodSchemaObject extends Super {
|
||||
constructor(...args: any[]) {
|
||||
super(...args)
|
||||
}
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user