col.vue.d.ts 872 B

1234567891011121314151617181920212223242526272829
  1. import { ColProps, ColSize } from "./col.js";
  2. import * as vue from "vue";
  3. //#region ../../packages/components/col/src/col.vue.d.ts
  4. declare var __VLS_8: {};
  5. type __VLS_Slots = {} & {
  6. default?: (props: typeof __VLS_8) => any;
  7. };
  8. declare const __VLS_base: vue.DefineComponent<ColProps, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<ColProps> & Readonly<{}>, {
  9. push: number;
  10. offset: number;
  11. tag: string;
  12. span: number;
  13. pull: number;
  14. xs: ColSize;
  15. sm: ColSize;
  16. md: ColSize;
  17. lg: ColSize;
  18. xl: ColSize;
  19. }, {}, {}, {}, string, vue.ComponentProvideOptions, false, {}, any>;
  20. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  21. declare const _default: typeof __VLS_export;
  22. type __VLS_WithSlots<T, S> = T & {
  23. new (): {
  24. $slots: S;
  25. };
  26. };
  27. //#endregion
  28. export { _default };