mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-15 13:19:28 +00:00
13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
import { AbstractDialog } from '@theia/core/lib/browser';
|
|
|
|
export class InstallationProgressDialog extends AbstractDialog<undefined> {
|
|
|
|
readonly value = undefined;
|
|
|
|
constructor(componentName: string) {
|
|
super({ title: 'Installation in progress' });
|
|
this.contentNode.textContent = `Installing ${componentName}. Please wait.`;
|
|
}
|
|
|
|
}
|