sunrise-cms/database/addLotComment.d.ts

7 lines
208 B
TypeScript

interface AddLotCommentForm {
lotId: string;
lotComment: string;
}
export declare function addLotComment(lotCommentForm: AddLotCommentForm, user: User): Promise<number>;
export default addLotComment;