9 lines
390 B
TypeScript
9 lines
390 B
TypeScript
import { type DateString, type TimeString } from '@cityssm/utils-datetime';
|
|
export interface AddBurialSiteContractCommentForm {
|
|
burialSiteContractId: string | number;
|
|
commentDateString?: DateString;
|
|
commentTimeString?: TimeString;
|
|
comment: string;
|
|
}
|
|
export default function addLotOccupancyComment(commentForm: AddBurialSiteContractCommentForm, user: User): Promise<number>;
|