first commit

This commit is contained in:
rayd1o
2026-03-05 11:46:58 +08:00
commit e7033775d8
20657 changed files with 1988940 additions and 0 deletions

14
frontend/node_modules/antd/es/anchor/AnchorLink.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import * as React from 'react';
export interface AnchorLinkBaseProps {
prefixCls?: string;
href: string;
target?: string;
title: React.ReactNode;
className?: string;
replace?: boolean;
}
export interface AnchorLinkProps extends AnchorLinkBaseProps {
children?: React.ReactNode;
}
declare const AnchorLink: React.FC<AnchorLinkProps>;
export default AnchorLink;