mirror of
https://github.com/ant-design/ant-design.git
synced 2025-06-14 13:51:41 +08:00
14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import type { Options } from 'scroll-into-view-if-needed';
|
|
export type {
|
|
InternalNamePath,
|
|
NamePath,
|
|
Store,
|
|
StoreValue,
|
|
} from '@rc-component/form/lib/interface';
|
|
|
|
export type ScrollFocusOptions = Options & {
|
|
focus?: boolean;
|
|
};
|
|
export type ScrollOptions = ScrollFocusOptions; // alias
|
|
export type FormLabelAlign = 'left' | 'right';
|