UNPKG

naive-upload

Version:

<p align="left"> <a href="https://www.npmjs.org/package/naive-upload"> <img src="https://img.shields.io/npm/v/naive-upload.svg"> </a> <a href="https://bundlephobia.com/package/naive-upload@latest"> <img src="https://img.shields.io/bundl

21 lines (20 loc) 281 B
/** * 进度信息 * * @author LCTR * @date 2022-09-22 */ export interface IProgress { /** * 准备完成数 */ preLoaded: number; /** * 已完成数 */ loaded: number; /** * 总数 */ total: number; }