about.ts 248 B

1234567891011121314
  1. import type { Component } from 'vue';
  2. interface AboutProps {
  3. description?: string;
  4. name?: string;
  5. title?: string;
  6. }
  7. interface DescriptionItem {
  8. content: Component | string;
  9. title: string;
  10. }
  11. export type { AboutProps, DescriptionItem };