sunrise-cms/helpers/lotOccupancyDB/updateMap.d.ts

18 lines
518 B
TypeScript

import type * as recordTypes from "../../types/recordTypes";
interface UpdateMapForm {
mapId: string;
mapName: string;
mapDescription: string;
mapSVG: string;
mapLatitude: string;
mapLongitude: string;
mapAddress1: string;
mapAddress2: string;
mapCity: string;
mapProvince: string;
mapPostalCode: string;
mapPhoneNumber: string;
}
export declare const updateMap: (mapForm: UpdateMapForm, requestSession: recordTypes.PartialSession) => boolean;
export default updateMap;