8 lines
293 B
TypeScript
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;
|