(
private app: AppService,
)
| 7 | @Injectable() |
| 8 | export class ButtonProvider extends ToolbarButtonProvider { |
| 9 | constructor ( |
| 10 | private app: AppService, |
| 11 | ) { |
| 12 | super() |
| 13 | this.app.ready$.subscribe(() => { |
| 14 | this.app.openNewTab({ type: DemoTerminalTabComponent }) |
| 15 | }) |
| 16 | } |
| 17 | |
| 18 | provide (): ToolbarButton[] { |
| 19 | return [ |
nothing calls this directly
no test coverage detected