ant-design / components /form /interface.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
5941ac2 verified
Raw
History Blame Contribute Delete
343 Bytes
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';