Files
zod-schema-class/src/JsonifiableSchemable.ts
Julien Valverdé d0e0962535 JsonifiableSchemable
2023-12-31 02:29:47 +01:00

12 lines
227 B
TypeScript

import { trait } from "@thilawyn/thilatrait"
export const JsonifiableSchemable = () =>
trait(Parent => {
abstract class JsonifiableSchemable extends Parent {
}
return JsonifiableSchemable
})