app.component.ts 504 B

1234567891011121314151617181920
  1. import {Component} from '@angular/core';
  2. import {HsConfig, HsLanguageService} from 'hslayers-ng';
  3. import {AppConfig} from './app.config';
  4. import {AppService} from './app.service';
  5. @Component({
  6. selector: 'app-component',
  7. templateUrl: './app.component.html',
  8. styleUrls: ['./custom.scss'],
  9. })
  10. export class AppComponent {
  11. constructor(
  12. public appService: AppService,
  13. //public hsConfig: HsConfig,
  14. public hsLangService: HsLanguageService
  15. ) {
  16. //this.hsConfig.update(AppConfig);
  17. }
  18. }