19 lines
413 B
TypeScript
Raw Normal View History

2025-04-18 17:51:42 +08:00
/**
* @Author: Gongxh
* @Date: 2025-04-18
* @Description: Promise
*/
export interface IPromiseResult {
/** 0:成功 其他:失败 */
code: number;
/** 失败信息 */
message: string;
}
export interface ICheckUpdatePromiseResult extends IPromiseResult {
/** 是否需要更新 */
needUpdate?: boolean;
/** 需要更新的资源大小 (KB) */
size?: number;
}