1class Progress { 2 tick: Function; 3 terminate: Function; 4 constructor() { 5 this.tick = jest.fn(); 6 this.terminate = jest.fn(); 7 } 8} 9 10export default Progress; 11