sunrise-cms/database/addContractComment.d.ts

9 lines
347 B
TypeScript

import { type DateString, type TimeString } from '@cityssm/utils-datetime';
export interface AddContractCommentForm {
contractId: number | string;
comment: string;
commentDateString?: DateString;
commentTimeString?: TimeString;
}
export default function addContractComment(commentForm: AddContractCommentForm, user: User): number;