index.d.ts 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. import type { Plugin } from 'vue';
  2. import Base from './Base';
  3. import Link from './Link';
  4. import Paragraph from './Paragraph';
  5. import Text from './Text';
  6. import Title from './Title';
  7. export type { TypographyProps } from './Typography';
  8. export { Text as TypographyText, Title as TypographyTitle, Paragraph as TypographyParagraph, Link as TypographyLink, };
  9. declare const _default: {
  10. new (...args: any[]): {
  11. $: import("vue").ComponentInternalInstance;
  12. $data: {};
  13. $props: Partial<{
  14. class?: any;
  15. inlist?: any;
  16. }> & Omit<Readonly<import("./Typography").InternalTypographyProps> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "class" | "inlist">;
  17. $attrs: {
  18. [x: string]: unknown;
  19. };
  20. $refs: {
  21. [x: string]: unknown;
  22. };
  23. $slots: Readonly<{
  24. [name: string]: import("vue").Slot;
  25. }>;
  26. $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
  27. $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
  28. $emit: (event: string, ...args: any[]) => void;
  29. $el: any;
  30. $options: import("vue").ComponentOptionsBase<Readonly<import("./Typography").InternalTypographyProps>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
  31. class?: any;
  32. inlist?: any;
  33. }> & {
  34. beforeCreate?: (() => void) | (() => void)[];
  35. created?: (() => void) | (() => void)[];
  36. beforeMount?: (() => void) | (() => void)[];
  37. mounted?: (() => void) | (() => void)[];
  38. beforeUpdate?: (() => void) | (() => void)[];
  39. updated?: (() => void) | (() => void)[];
  40. activated?: (() => void) | (() => void)[];
  41. deactivated?: (() => void) | (() => void)[];
  42. beforeDestroy?: (() => void) | (() => void)[];
  43. beforeUnmount?: (() => void) | (() => void)[];
  44. destroyed?: (() => void) | (() => void)[];
  45. unmounted?: (() => void) | (() => void)[];
  46. renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
  47. renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
  48. errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
  49. };
  50. $forceUpdate: () => void;
  51. $nextTick: typeof import("vue").nextTick;
  52. $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
  53. } & Readonly<import("./Typography").InternalTypographyProps> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties;
  54. __isFragment?: never;
  55. __isTeleport?: never;
  56. __isSuspense?: never;
  57. } & import("vue").ComponentOptionsBase<Readonly<import("./Typography").InternalTypographyProps>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
  58. class?: any;
  59. inlist?: any;
  60. }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Plugin & {
  61. readonly Text: typeof Text;
  62. readonly Title: typeof Title;
  63. readonly Paragraph: typeof Paragraph;
  64. readonly Link: typeof Link;
  65. readonly Base: typeof Base;
  66. };
  67. export default _default;