@toutix/whitelabel
Version:
Toutix whitelabel React container components
32 lines • 752 B
TypeScript
import { ICityV2 } from "./City";
export interface ILocation {
locationId: string;
name: string;
address: string;
capacity: number;
longitude: string;
latitude: string;
directionUrl: string;
}
export interface ILocationBackEnd {
LocationID: string;
Name: string;
Address: string;
Capacity: number;
longitude: string;
latitude: string;
direction_url: string;
}
export declare const convertLocation: (location: ILocationBackEnd) => ILocation;
export interface ILocationV2 {
id: string;
name: string;
address: string;
lat?: number;
lon?: number;
image?: string;
displayPriority?: number;
timeZone?: string;
city?: ICityV2;
}
//# sourceMappingURL=Location.d.ts.map