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

8 lines
293 B
TypeScript

import type * as recordTypes from "../../types/recordTypes";
interface AddLotCommentForm {
lotId: string;
lotComment: string;
}
export declare const addLotComment: (lotCommentForm: AddLotCommentForm, requestSession: recordTypes.PartialSession) => number;
export default addLotComment;