Added type hints #246
This commit is contained in:
parent
68fa1b8c2d
commit
699377be54
@ -11,15 +11,15 @@ export class HistoryBtnComponent implements OnInit {
|
||||
@Input() history: History[] = [];
|
||||
@Input() translationKey: string = "";
|
||||
|
||||
showSidebar = false;
|
||||
public showSidebar: boolean = false;
|
||||
|
||||
constructor() {
|
||||
public constructor() {
|
||||
}
|
||||
|
||||
ngOnInit(): void {
|
||||
public ngOnInit(): void {
|
||||
}
|
||||
|
||||
openHistory(): void {
|
||||
public openHistory(): void {
|
||||
this.showSidebar = true;
|
||||
let oldHistory: Partial<History> = {};
|
||||
for (const history of this.history) {
|
||||
@ -36,7 +36,7 @@ export class HistoryBtnComponent implements OnInit {
|
||||
}
|
||||
}
|
||||
|
||||
getAttributeTranslationKey(key: string) {
|
||||
public getAttributeTranslationKey(key: string): string {
|
||||
return `common.history.${key}`;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user