10 lines
467 B
TypeScript
10 lines
467 B
TypeScript
import type * as recordTypes from '../../types/recordTypes';
|
|
interface UpdateLotOccupancyCommentForm {
|
|
lotOccupancyCommentId: string | number;
|
|
lotOccupancyCommentDateString: string;
|
|
lotOccupancyCommentTimeString: string;
|
|
lotOccupancyComment: string;
|
|
}
|
|
export declare function updateLotOccupancyComment(commentForm: UpdateLotOccupancyCommentForm, requestSession: recordTypes.PartialSession): Promise<boolean>;
|
|
export default updateLotOccupancyComment;
|