import { PacksService } from '../resources/packs'; import { LocaleService } from '../common/i18n'; import { TdDataTableService, TdDataTableSortingOrder, ITdDataTableSortChangeEvent, ITdDataTableColumn } from '@covalent/core'; import { IPageChangeEvent } from '@covalent/core'; import { Component, AfterViewInit } from '@angular/core'; import { TdMediaService } from '@covalent/core'; @Component({ selector: 'pack-form', templateUrl: 'src/app/forms/pack.form.html' }) export class PackFormComponent implements AfterViewInit { form_title: string = ''; form_subtitle: string = ''; constructor(private packs: PacksService, private $L: LocaleService) { this.form_title = $L.get('Pack data'); this.form_subtitle = $L.get('Fullfill the pack data and save the changes'); } ngOnInit(): void { } ngAfterViewInit(): void { } }