w-aura/src/types.ts
2023-05-04 20:56:34 +06:00

9 lines
154 B
TypeScript

export interface FormField<T> {
name: string
value: T
label?: string
placeholder?: string
onValid: (value: T) => void
onInvalid: () => void
}