Settings & FormFields

This commit is contained in:
cracklesparkle
2024-08-01 11:06:25 +09:00
parent 1e802b4550
commit 748aa81a99
5 changed files with 47 additions and 34 deletions

View File

@ -26,6 +26,10 @@ export interface CreateField {
defaultValue?: any;
inputType?: InputType;
validate?: Validate<string, boolean>;
/** Watch for field */
watch?: string;
/** Message on watch */
watchMessage?: string;
/** Should field be included in the request */
include?: boolean;
}