sunrise-cms/database/addWorkOrderComment.d.ts

6 lines
203 B
TypeScript

export interface AddWorkOrderCommentForm {
comment: string;
workOrderId: string;
}
export default function addWorkOrderComment(workOrderCommentForm: AddWorkOrderCommentForm, user: User): number;