UNPKG

angular-location-selector

Version:

![Logo](https://iili.io/HWfBDgV.png)

18 lines (17 loc) 710 B
import { EventEmitter, OnInit } from '@angular/core'; import { LocationSelector } from './models/location-selector/location-selector-model'; import { LocationSelectorInfo } from './models/locationSelectorModel'; export declare class AngularLocationSelectorComponent implements OnInit { type: string; labelText: string; selectedLocationId: number; selectedLocationName: string; selectorDisabledLocation: boolean; locationHierachy: LocationSelector; hoverText: string; onChange: EventEmitter<any>; constructor(); ngOnInit(): void; onLocationsFetched(locations: LocationSelector): void; updateLocationState(dataItem: LocationSelectorInfo): void; }