11 lines
438 B
TypeScript
11 lines
438 B
TypeScript
import type * as recordTypes from "../../types/recordTypes";
|
|
interface AddLotOccupancyFeeForm {
|
|
lotOccupancyId: number | string;
|
|
feeId: number | string;
|
|
quantity: number | string;
|
|
feeAmount?: number | string;
|
|
taxAmount?: number | string;
|
|
}
|
|
export declare const addLotOccupancyFee: (lotOccupancyFeeForm: AddLotOccupancyFeeForm, requestSession: recordTypes.PartialSession) => boolean;
|
|
export default addLotOccupancyFee;
|