JsonifiableSchemable

This commit is contained in:
Julien Valverdé
2023-12-31 02:29:47 +01:00
parent 680c3d8617
commit d0e0962535
5 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { trait } from "@thilawyn/thilatrait"
export const JsonifiableSchemable = () =>
trait(Parent => {
abstract class JsonifiableSchemable extends Parent {
}
return JsonifiableSchemable
})