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

10 lines
441 B
TypeScript

import type * as recordTypes from "../../types/recordTypes";
interface AddLotOccupancyCommentForm {
lotOccupancyId: string | number;
lotOccupancyCommentDateString?: string;
lotOccupancyCommentTimeString?: string;
lotOccupancyComment: string;
}
export declare const addLotOccupancyComment: (commentForm: AddLotOccupancyCommentForm, requestSession: recordTypes.PartialSession) => number;
export default addLotOccupancyComment;