mirror of
https://github.com/Eugeny/tabby.git
synced 2025-10-05 14:34:54 +00:00
13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
import { Component } from '@angular/core'
|
|
import { HostWindowService } from '../api'
|
|
|
|
/** @hidden */
|
|
@Component({
|
|
selector: 'title-bar',
|
|
templateUrl:'./titleBar.component.pug',
|
|
styleUrls: ['./titleBar.component.scss'],
|
|
})
|
|
export class TitleBarComponent {
|
|
constructor (public hostWindow: HostWindowService) { }
|
|
}
|