8 lines
292 B
TypeScript
8 lines
292 B
TypeScript
import type * as recordTypes from '../../types/recordTypes';
|
|
interface AddLotCommentForm {
|
|
lotId: string;
|
|
lotComment: string;
|
|
}
|
|
export declare function addLotComment(lotCommentForm: AddLotCommentForm, requestSession: recordTypes.PartialSession): number;
|
|
export default addLotComment;
|