container.vue.d.ts 615 B

1234567891011121314151617
  1. import * as vue from "vue";
  2. //#region ../../packages/components/container/src/container.vue.d.ts
  3. declare var __VLS_1: {};
  4. type __VLS_Slots = {} & {
  5. default?: (props: typeof __VLS_1) => any;
  6. };
  7. declare const __VLS_base: vue.DefineComponent<{}, {}, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{}>>, {}, {}>;
  8. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  9. declare const _default: typeof __VLS_export;
  10. type __VLS_WithSlots<T, S> = T & {
  11. new (): {
  12. $slots: S;
  13. };
  14. };
  15. //#endregion
  16. export { _default };