sunrise-cms/database/addLotComment.d.ts

6 lines
185 B
TypeScript

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