mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-29 00:59:40 +07:00
8 lines
220 B
TypeScript
8 lines
220 B
TypeScript
import { UseZFormReturn } from "@/hooks/useZForm";
|
|
import { FieldPath, FieldValues } from "react-hook-form";
|
|
|
|
export type FormFieldBaseProps<T extends FieldValues> = {
|
|
form: UseZFormReturn<T>;
|
|
name: FieldPath<T>;
|
|
};
|