You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
1.0 KiB

1 month ago
  1. import Container from './src/container.vue';
  2. import Aside from './src/aside.vue';
  3. import Footer from './src/footer.vue';
  4. import Header from './src/header.vue';
  5. import Main from './src/main.vue';
  6. import type { SFCWithInstall } from 'element-plus/es/utils';
  7. export declare const ElContainer: SFCWithInstall<typeof Container> & {
  8. Aside: typeof Aside;
  9. Footer: typeof Footer;
  10. Header: typeof Header;
  11. Main: typeof Main;
  12. };
  13. export default ElContainer;
  14. export declare const ElAside: SFCWithInstall<typeof Aside>;
  15. export declare const ElFooter: SFCWithInstall<typeof Footer>;
  16. export declare const ElHeader: SFCWithInstall<typeof Header>;
  17. export declare const ElMain: SFCWithInstall<typeof Main>;
  18. export type ContainerInstance = InstanceType<typeof Container> & unknown;
  19. export type AsideInstance = InstanceType<typeof Aside> & unknown;
  20. export type FooterInstance = InstanceType<typeof Footer> & unknown;
  21. export type HeaderInstance = InstanceType<typeof Header> & unknown;
  22. export type MainInstance = InstanceType<typeof Main> & unknown;