app/@overflow/commons/ui/component/window/title-bar.component.ts
crusader f770a24a10 ing
2018-08-15 23:54:10 +09:00

23 lines
400 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-title-bar',
templateUrl: './title-bar.component.html',
})
export class TitleBarComponent implements OnInit {
private style: string;
private titleBarClass: string;
private showTopResize: boolean;
private showLeftResize: boolean;
constructor(
) { }
ngOnInit() {
}
onTitlebarDoubleClick() {
}
}