pd-api
Version:
10 lines (9 loc) • 314 B
TypeScript
import { ApiService } from '../api.service';
import { Observable } from 'rxjs/Observable';
import { Country } from "../country/country.service";
export declare class WarningsApiService {
private api;
host: string;
constructor(api: ApiService);
getWarningStats(country: Country): Observable<any>;
}