index.d.ts 880 B

123456789101112
  1. import type { CSSObject } from '@ant-design/cssinjs';
  2. import type { AliasToken } from '../theme/internal';
  3. export declare const textEllipsis: CSSObject;
  4. export declare const resetComponent: (token: AliasToken, needInheritFontFamily?: boolean) => CSSObject;
  5. export declare const resetIcon: () => CSSObject;
  6. export declare const clearFix: () => CSSObject;
  7. export declare const genLinkStyle: (token: AliasToken) => CSSObject;
  8. export declare const genCommonStyle: (token: AliasToken, componentPrefixCls: string, rootCls?: string, resetFont?: boolean) => CSSObject;
  9. export declare const genFocusOutline: (token: AliasToken, offset?: number) => CSSObject;
  10. export declare const genFocusStyle: (token: AliasToken, offset?: number) => CSSObject;
  11. export declare const genIconStyle: (iconPrefixCls: string) => CSSObject;
  12. export declare const operationUnit: (token: AliasToken) => CSSObject;