UNPKG

oiocns-editer

Version:

About oiocns of a component package.

19 lines 354 B
/** * 文件系统项分享数据 */ export type FileItemShare = { /** 完整路径 */ size: number; /** 名称 */ name: string; /** 视频封面 */ poster?: string; /** 文件类型 */ contentType?: string; /** 共享链接 */ shareLink?: string; /** 拓展名 */ extension?: string; /** 缩略图 */ thumbnail?: string; };