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

8 lines
301 B
TypeScript

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