Files
2026-01-12 09:12:41 +00:00

8 lines
321 B
TypeScript

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