mirror of
https://github.com/Eugeny/tabby.git
synced 2026-08-24 02:34:19 -05:00
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
19 lines
576 B
TypeScript
19 lines
576 B
TypeScript
/* eslint-disable @typescript-eslint/explicit-module-boundary-types */
|
|
import { Component } from '@angular/core'
|
|
import { HostWindowService } from '../api/hostWindow'
|
|
import { AppService } from '../services/app.service'
|
|
|
|
/** @hidden */
|
|
@Component({
|
|
selector: 'window-controls',
|
|
templateUrl:'./windowControls.component.pug',
|
|
styleUrls: ['./windowControls.component.scss'],
|
|
})
|
|
export class WindowControlsComponent {
|
|
constructor (public hostWindow: HostWindowService, public app: AppService) { }
|
|
|
|
async closeWindow () {
|
|
this.app.closeWindow()
|
|
}
|
|
}
|