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

10 lines
386 B
TypeScript

import type * as recordTypes from '../../types/recordTypes';
interface UpdateLotCommentForm {
lotCommentId: string | number;
lotCommentDateString: string;
lotCommentTimeString: string;
lotComment: string;
}
export declare function updateLotComment(commentForm: UpdateLotCommentForm, requestSession: recordTypes.PartialSession): boolean;
export default updateLotComment;