minishouyin/node_modules/antd/es/style/roundedArrow.d.ts
2025-11-12 11:35:57 +08:00

8 lines
404 B
TypeScript

import type { CSSObject } from '@ant-design/cssinjs';
import type { AliasToken } from '../theme/interface';
import type { CSSUtil } from '../theme/internal';
export interface ArrowToken {
}
export declare function getArrowToken(token: AliasToken): ArrowToken;
export declare const genRoundedArrow: <T extends AliasToken & ArrowToken & CSSUtil>(token: T, bgColor: string, boxShadow: string) => CSSObject;