import { DaffGeographyServiceInterface } from '@daffodil/geography/driver'
interface DaffGeographyServiceInterface<T extends DaffCountry = DaffCountry> {
list(): Observable<T[]>
get(id: T["id"]): Observable<T>
}
ObservableRetrieves the list of countries available to the given store.
ObservableRetrieve precise information about a specific country.
| Parameter | id: T["id"] |
|---|---|
| Description |