返回 AiToEarn
threads.types.ts
根目录 / project / aitoearn-web / src / api / platforms / threads.types.ts
1 // Source: platforms/threads.api.ts inline types
2 // Source: plat/threads.ts
3
4 /**
5 * ThreadsLocationItem 数据结构。
6 */
7 export interface ThreadsLocationItem {
8 id: string
9 label: string
10 description?: string
11 }
12
13 /**
14 * ThreadsLocationsResponse 响应数据。
15 */
16 export interface ThreadsLocationsResponse {
17 data: ThreadsLocationItem[]
18 code: string | number
19 message: string
20 url: string
21 }
22
22 lines TYPESCRIPT