text.vue.d.ts 902 B

1234567891011121314151617181920212223
  1. import { ComponentSize } from "../../../constants/size.js";
  2. import { TextProps } from "./text.js";
  3. import * as _$vue from "vue";
  4. //#region ../../packages/components/text/src/text.vue.d.ts
  5. declare var __VLS_9: {};
  6. type __VLS_Slots = {} & {
  7. default?: (props: typeof __VLS_9) => any;
  8. };
  9. declare const __VLS_base: _$vue.DefineComponent<TextProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<TextProps> & Readonly<{}>, {
  10. size: ComponentSize;
  11. type: "primary" | "success" | "info" | "warning" | "danger" | "";
  12. tag: string;
  13. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
  14. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  15. declare const _default: typeof __VLS_export;
  16. type __VLS_WithSlots<T, S> = T & {
  17. new (): {
  18. $slots: S;
  19. };
  20. };
  21. //#endregion
  22. export { _default as default };