Jsonifiable
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2024-06-17 22:03:50 +02:00
parent 0f65c8ed5a
commit 50578acf21

View File

@@ -0,0 +1,13 @@
import { Schema } from "@effect/schema"
export function Jsonifiable<
A,
I,
R,
Fields extends Schema.Struct.Fields
>(
schema: Schema.Schema<A, I, R>
) {
}