FormAPI type

FormAPI type

Signature

  1. export declare type FormAPI<T> = Omit<UseFormReturn<T>, 'trigger' | 'handleSubmit'> & {
  2. errors: FieldErrors<T>;
  3. };

Import

  1. import { FormAPI } from '@grafana/ui';