13 lines
401 B
TypeScript
13 lines
401 B
TypeScript
import type * as recordTypes from "../../types/recordTypes";
|
|
interface AddLotForm {
|
|
lotName: string;
|
|
lotTypeId: string | number;
|
|
lotStatusId: string | number;
|
|
mapId: string | number;
|
|
mapKey: string;
|
|
lotLatitude: string;
|
|
lotLongitude: string;
|
|
}
|
|
export declare const addLot: (lotForm: AddLotForm, requestSession: recordTypes.PartialSession) => number;
|
|
export default addLot;
|