save-dialog.component.ts 531 Bytes
Newer Older
1 2
import { Component, OnInit, Inject } from '@angular/core';
import { MAT_DIALOG_DATA } from '@angular/material/dialog';
3
import { TranslateService } from '@ngx-translate/core';
4 5 6 7 8 9 10 11

@Component({
  selector: 'app-save-dialog',
  templateUrl: './save-dialog.component.html',
  styleUrls: ['./save-dialog.component.scss']
})
export class SaveDialogComponent implements OnInit {

12
  constructor(@Inject(MAT_DIALOG_DATA) public data: {fileName: string, result: boolean}, protected translate: TranslateService) { }
13 14 15 16 17

  ngOnInit(): void {
  }

}