/** * 当前执行的步骤 */ export interface ProgressStep { [key: string]: any; name: string; title?: string; tx?: TX; } export interface TX { hash: string; url: string; } export declare type OnProgress = (step: ProgressStep) => void; //# sourceMappingURL=progress.d.ts.map