card.vue.d.ts 1015 B

123456789101112131415161718192021222324252627
  1. import { CardProps } from "./card.js";
  2. import * as _$vue from "vue";
  3. //#region ../../packages/components/card/src/card.vue.d.ts
  4. declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {};
  5. type __VLS_Slots = {} & {
  6. header?: (props: typeof __VLS_1) => any;
  7. } & {
  8. default?: (props: typeof __VLS_3) => any;
  9. } & {
  10. footer?: (props: typeof __VLS_5) => any;
  11. };
  12. declare const __VLS_base: _$vue.DefineComponent<CardProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<CardProps> & Readonly<{}>, {
  13. header: string;
  14. footer: string;
  15. bodyStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
  16. shadow: "always" | "hover" | "never";
  17. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
  18. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  19. declare const _default: typeof __VLS_export;
  20. type __VLS_WithSlots<T, S> = T & {
  21. new (): {
  22. $slots: S;
  23. };
  24. };
  25. //#endregion
  26. export { _default as default };