返回 AiToEarn
material.types.ts
根目录 / project / aitoearn-web / src / api / _shared / material.types.ts
1 /**
2 * 素材媒体类型。
3 */
4 export type MaterialMediaType = 'img' | 'video'
5
6 /**
7 * 素材媒体项,供素材库与公开推广码素材接口复用。
8 */
9 export interface MaterialMedia {
10 url: string
11 type: MaterialMediaType
12 content?: string
13 thumbUrl?: string
14 }
15
15 lines TYPESCRIPT