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

10 lines
434 B
TypeScript

import type * as recordTypes from "../../types/recordTypes";
interface UpdateWorkOrderCommentForm {
workOrderCommentId: string | number;
workOrderCommentDateString: string;
workOrderCommentTimeString: string;
workOrderComment: string;
}
export declare function updateWorkOrderComment(commentForm: UpdateWorkOrderCommentForm, requestSession: recordTypes.PartialSession): boolean;
export default updateWorkOrderComment;