13 lines
383 B
TypeScript
13 lines
383 B
TypeScript
export interface AddLotForm {
|
|
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 addLot(lotForm: AddLotForm, user: User): Promise<number>;
|