@recursyve/forms-frontend
Version:
13 lines (12 loc) • 501 B
TypeScript
import { OnInit } from "@angular/core";
import { GeolocationService } from "../../../services/geolocation.service";
import { FormViewBase } from "../form-view.base";
export declare class CoordComponent extends FormViewBase implements OnInit {
private geolocationService;
constructor(geolocationService: GeolocationService);
ngOnInit(): void;
initModel(): boolean;
onLatitudeChange(value: string): void;
onLongitudeChange(value: string): void;
setCoordWithDevice(): void;
}