UNPKG

@gouvfr-anct/mediation-numerique

Version:

📚 Bibliothèque pour la cartographie de l’offre de médiation numérique.

9 lines (8 loc) • 349 B
import { InjectionToken } from '@angular/core'; import { Observable } from 'rxjs'; import { GeoJson } from '../models/geojson.model'; export interface GeoJsonRepository { getMDMGeoJson(): Observable<GeoJson[]>; getTownshipCoord(town: string): Observable<Array<any>>; } export declare const GEO_JSON_TOKEN: InjectionToken<GeoJsonRepository>;