Typography.d.ts 850 B

12345678910111213141516171819
  1. import type { HTMLAttributes, PropType } from 'vue';
  2. import type { Direction } from '../config-provider';
  3. export interface TypographyProps extends HTMLAttributes {
  4. direction?: Direction;
  5. prefixCls?: string;
  6. }
  7. export interface InternalTypographyProps extends TypographyProps {
  8. component?: string;
  9. }
  10. export declare const typographyProps: () => {
  11. prefixCls: StringConstructor;
  12. direction: PropType<Direction>;
  13. component: StringConstructor;
  14. };
  15. declare const Typography: import("vue").DefineComponent<InternalTypographyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<InternalTypographyProps>, {
  16. class?: any;
  17. inlist?: any;
  18. }>;
  19. export default Typography;