| 1234567891011121314151617181920 |
- import {Component} from '@angular/core';
- import {HsConfig, HsLanguageService} from 'hslayers-ng';
- import {AppConfig} from './app.config';
- import {AppService} from './app.service';
- @Component({
- selector: 'app-component',
- templateUrl: './app.component.html',
- styleUrls: ['./custom.scss'],
- })
- export class AppComponent {
- constructor(
- public appService: AppService,
- //public hsConfig: HsConfig,
- public hsLangService: HsLanguageService
- ) {
- //this.hsConfig.update(AppConfig);
- }
- }
|