Form
All checks were successful
Lint / lint (push) Successful in 15s

This commit is contained in:
Julien Valverdé
2025-04-13 01:03:40 +02:00
parent 870fe479c3
commit 129ab04ea7
2 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import type { Schema } from "effect"
export interface Form<A, I, R> {
readonly schema: Schema.Schema<A, I, R>
}

View File

@@ -0,0 +1 @@
export * as Form from "./Form.js"