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

8 lines
300 B
TypeScript

import type * as recordTypes from "../../types/recordTypes";
interface UpdateLotTypeForm {
lotTypeId: number | string;
lotType: string;
}
export declare function updateLotType(lotTypeForm: UpdateLotTypeForm, requestSession: recordTypes.PartialSession): boolean;
export default updateLotType;