/
githubmirror
/
tabby
Обзор
Документация
Войти
/
githubmirror
/
tabby
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tabby-core/src/components/titleBar.component.ts
14 строк
372 B
Evan / Fero
fix: linting
16 июл 2023, 22:06
16 июл 2023, 22:06
8af3c95
Код
Авторство
О чём код?
import { Component, Input } from '@angular/core' import { HostWindowService } from '../api' /** @hidden */ @Component({ selector: 'title-bar', templateUrl: './titleBar.component.pug', styleUrls: ['./titleBar.component.scss'], }) export class TitleBarComponent { @Input() hideControls: boolean constructor (public hostWindow: HostWindowService) { } }