feature-libs/storefinder/core/model/search-query.ts
Properties |
|
| longitudeLatitude |
longitudeLatitude:
|
Type : GeoPoint
|
| Optional |
| queryText |
queryText:
|
Type : string
|
| Optional |
| radius |
radius:
|
Type : number
|
| Optional |
| useMyLocation |
useMyLocation:
|
Type : boolean
|
| Optional |
import { GeoPoint } from '@spartacus/core';
export interface StoreFinderSearchQuery {
queryText?: string;
longitudeLatitude?: GeoPoint;
useMyLocation?: boolean;
radius?: number;
}