Typography.d.ts 1.1 KB

123456789101112131415161718192021222324
  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<import("vue").ExtractPropTypes<{
  16. prefixCls: StringConstructor;
  17. direction: PropType<Direction>;
  18. component: StringConstructor;
  19. }>, () => import("../_util/type").VueNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
  20. prefixCls: StringConstructor;
  21. direction: PropType<Direction>;
  22. component: StringConstructor;
  23. }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
  24. export default Typography;