UNPKG

492 BTypeScriptView Raw
1import { AtLeastOne } from '../types';
2export interface LocationServiceConfig {
3 LocationService: {
4 region: string;
5 maps?: {
6 items: Record<string, unknown>;
7 default: string;
8 };
9 searchIndices?: {
10 items: string[];
11 default: string;
12 };
13 geofenceCollections?: {
14 items: string[];
15 default: string;
16 };
17 };
18}
19export type GeoConfig = AtLeastOne<LocationServiceConfig>;