import { TransState } from './trans-state.enum'; import { TransType } from './trans-type.enum'; /** * 转码 */ export declare class Trans { /** * 封面截图key */ coverKey?: string; /** * 源文件key */ rawKey: string; /** * 转码类型 */ type: TransType; /** * Fail状态会包含错误信息 */ message: string; /** * 转码状态 */ state: TransState; /** * 转码时长 */ duration: number; }