Fix
All checks were successful
Lint / lint (push) Successful in 14s

This commit is contained in:
Julien Valverdé
2026-03-30 16:33:46 +02:00
parent ee1c0c45cd
commit 56f4e2d1f1
3 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ import { Component, Form, Subscribable } from "effect-fc"
export declare namespace TextFieldFormInputView {
export interface Props extends Omit<TextField.RootProps, "form">, Form.useInput.Options {
readonly form: Form.Form<any, any, string>
readonly form: Form.Form<readonly PropertyKey[], any, string>
}
}

View File

@@ -5,7 +5,7 @@ import { Component, Form, Subscribable } from "effect-fc"
export declare namespace TextFieldOptionalFormInputView {
export interface Props extends Omit<TextField.RootProps, "form" | "defaultValue">, Form.useOptionalInput.Options<string> {
readonly form: Form.Form<any, any, Option.Option<string>>
readonly form: Form.Form<readonly PropertyKey[], any, Option.Option<string>>
}
}