sunrise-cms/database/updateLotOccupantType.d.ts

8 lines
309 B
TypeScript

export interface UpdateLotOccupantTypeForm {
lotOccupantTypeId: number | string;
lotOccupantType: string;
fontAwesomeIconClass: string;
occupantCommentTitle: string;
}
export default function updateLotOccupantType(lotOccupantTypeForm: UpdateLotOccupantTypeForm, user: User): Promise<boolean>;