10 lines
387 B
TypeScript
10 lines
387 B
TypeScript
import type * as recordTypes from "../../types/recordTypes";
|
|
interface UpdateLotCommentForm {
|
|
lotCommentId: string | number;
|
|
lotCommentDateString: string;
|
|
lotCommentTimeString: string;
|
|
lotComment: string;
|
|
}
|
|
export declare const updateLotComment: (commentForm: UpdateLotCommentForm, requestSession: recordTypes.PartialSession) => boolean;
|
|
export default updateLotComment;
|