Files
video-gen/video-gen-admin/node_modules/antd/lib/anchor/index.d.ts
T
2026-05-25 17:08:18 +08:00

11 lines
442 B
TypeScript

import InternalAnchor from './Anchor';
import AnchorLink from './AnchorLink';
export type { AnchorProps, AnchorSemanticClassNames, AnchorSemanticName, AnchorSemanticStyles, } from './Anchor';
export type { AnchorLinkProps } from './AnchorLink';
type InternalAnchorType = typeof InternalAnchor;
type CompoundedComponent = InternalAnchorType & {
Link: typeof AnchorLink;
};
declare const Anchor: CompoundedComponent;
export default Anchor;