common.ts 601 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * @Author: LiZhiWei
  3. * @Date: 2026-01-13 15:01:49
  4. * @LastEditors: LiZhiWei
  5. * @LastEditTime: 2026-01-15 08:47:44
  6. * @Description:
  7. */
  8. declare global {
  9. type Card = {
  10. title: string
  11. desc: string
  12. icon: string
  13. }
  14. type CaseItem = {
  15. title: string
  16. desc: string
  17. img: string
  18. btnText: string
  19. points: {
  20. title: string
  21. itemDesc: string
  22. }[]
  23. }
  24. type HistoryEvent = {
  25. month: string
  26. content: string
  27. }
  28. type HistoryYear = {
  29. year: string
  30. events: HistoryEvent[]
  31. }
  32. type AbilityTab = {
  33. id: string
  34. title: string
  35. }
  36. }
  37. export {}