interface.d.ts 321 B

1234567
  1. import type { Options } from 'scroll-into-view-if-needed';
  2. export type { InternalNamePath, NamePath, Store, StoreValue } from 'rc-field-form/lib/interface';
  3. export type ScrollFocusOptions = Options & {
  4. focus?: boolean;
  5. };
  6. export type ScrollOptions = ScrollFocusOptions;
  7. export type FormLabelAlign = 'left' | 'right';