aside.vue.d.ts 835 B

12345678910111213141516171819202122232425
  1. import * as _$vue from "vue";
  2. //#region ../../packages/components/container/src/aside.vue.d.ts
  3. interface AsideProps {
  4. /**
  5. * @description width of the side section
  6. */
  7. width?: string | null;
  8. }
  9. declare var __VLS_1: {};
  10. type __VLS_Slots = {} & {
  11. default?: (props: typeof __VLS_1) => any;
  12. };
  13. declare const __VLS_base: _$vue.DefineComponent<AsideProps, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<AsideProps> & Readonly<{}>, {
  14. width: string | null;
  15. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, false, {}, any>;
  16. declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
  17. declare const _default: typeof __VLS_export;
  18. type __VLS_WithSlots<T, S> = T & {
  19. new (): {
  20. $slots: S;
  21. };
  22. };
  23. //#endregion
  24. export { _default as default };