15 lines
546 B
TypeScript
15 lines
546 B
TypeScript
export interface UpdateLotForm {
|
|
lotId: string | number;
|
|
lotName: string;
|
|
lotTypeId: string | number;
|
|
lotStatusId: string | number;
|
|
mapId: string | number;
|
|
mapKey: string;
|
|
lotLatitude: string;
|
|
lotLongitude: string;
|
|
lotTypeFieldIds?: string;
|
|
[lotFieldValue_lotTypeFieldId: string]: unknown;
|
|
}
|
|
export default function updateLot(lotForm: UpdateLotForm, user: User): Promise<boolean>;
|
|
export declare function updateLotStatus(lotId: number | string, lotStatusId: number | string, user: User): Promise<boolean>;
|