(message: string, subtext?: string)
| 450 | } |
| 451 | |
| 452 | updateLoadingText(message: string, subtext?: string) { |
| 453 | this.postMessage({ command: 'updateLoadingText', text: message, subtext }); |
| 454 | } |
| 455 | |
| 456 | updateProgress(current: number, total: number) { |
| 457 | this.postMessage({ command: 'updateProgress', current, total }); |