Files
XCDesktop/shared/types/pydemos.ts
2026-03-08 01:34:54 +08:00

12 lines
172 B
TypeScript

export interface PyDemoItem {
name: string
path: string
created: string
fileCount: number
}
export interface PyDemoMonth {
month: number
demos: PyDemoItem[]
}