12 lines
227 B
TypeScript
12 lines
227 B
TypeScript
import { trait } from "@thilawyn/thilatrait"
|
|
|
|
|
|
export const JsonifiableSchemable = () =>
|
|
trait(Parent => {
|
|
abstract class JsonifiableSchemable extends Parent {
|
|
|
|
}
|
|
|
|
return JsonifiableSchemable
|
|
})
|