9 lines
375 B
TypeScript
9 lines
375 B
TypeScript
import { type DateString, type TimeString } from '@cityssm/utils-datetime';
|
|
export interface UpdateWorkOrderCommentForm {
|
|
workOrderCommentId: number | string;
|
|
comment: string;
|
|
commentDateString: DateString;
|
|
commentTimeString: TimeString;
|
|
}
|
|
export default function updateWorkOrderComment(commentForm: UpdateWorkOrderCommentForm, user: User): Promise<boolean>;
|