9 lines
332 B
TypeScript
9 lines
332 B
TypeScript
import { type DateString, type TimeString } from '@cityssm/utils-datetime';
|
|
export interface UpdateForm {
|
|
comment: string;
|
|
commentDateString: DateString;
|
|
commentTimeString: TimeString;
|
|
contractCommentId: number | string;
|
|
}
|
|
export default function updateContractComment(commentForm: UpdateForm, user: User): boolean;
|