sunrise-cms/database/updateIntermentContainerTyp...

7 lines
290 B
TypeScript

export interface UpdateIntermentContainerTypeForm {
intermentContainerTypeId: number | string;
intermentContainerType: string;
isCremationType: '0' | '1';
}
export default function updateIntermentContainerType(updateForm: UpdateIntermentContainerTypeForm, user: User): boolean;