| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /*
- * @Author: LiZhiWei
- * @Date: 2026-01-13 15:01:49
- * @LastEditors: LiZhiWei
- * @LastEditTime: 2026-01-15 08:47:44
- * @Description:
- */
- declare global {
- type Card = {
- title: string
- desc: string
- icon: string
- }
- type CaseItem = {
- title: string
- desc: string
- img: string
- btnText: string
- points: {
- title: string
- itemDesc: string
- }[]
- }
- type HistoryEvent = {
- month: string
- content: string
- }
- type HistoryYear = {
- year: string
- events: HistoryEvent[]
- }
- type AbilityTab = {
- id: string
- title: string
- }
- }
- export {}
|