sunrise-cms/database/addWorkOrderComment.d.ts

6 lines
212 B
TypeScript

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