You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import type { CSSProperties, ReactNode } from 'react';
- type LinkProps = {
- className: string;
- href: string;
- children: ReactNode;
- style?: CSSProperties;
- };
- export type LinkComp = (props: LinkProps) => JSX.Element;
- /**
- * A backup link component, import { Link } from 'rspress/theme' to replace it
- */
- export declare const ALink: LinkComp;
- export {};
|