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