import { IGPSOption } from './IGPSOption'; import { IMyLocation } from './IMyLocation'; export interface IMyLocInfo { floorId: string | null; location: { x: number; y: number; z: number; }; isActive: boolean; marker?: IMyLocation; gpsOption: IGPSOption; }