20 lines
1.4 KiB
TypeScript
20 lines
1.4 KiB
TypeScript
import type * as recordTypes from "../types/recordTypes";
|
|
export declare function getLotOccupantTypes(): recordTypes.LotOccupantType[];
|
|
export declare function getLotOccupantTypeById(lotOccupantTypeId: number): recordTypes.LotOccupantType;
|
|
export declare function getLotOccupantTypesByLotOccupantType(lotOccupantType: string): recordTypes.LotOccupantType;
|
|
export declare function clearLotOccupantTypesCache(): void;
|
|
export declare function getLotStatuses(): recordTypes.LotStatus[];
|
|
export declare function getLotStatusById(lotStatusId: number): recordTypes.LotStatus;
|
|
export declare function getLotStatusByLotStatus(lotStatus: string): recordTypes.LotStatus;
|
|
export declare function clearLotStatusesCache(): void;
|
|
export declare function getLotTypes(): recordTypes.LotType[];
|
|
export declare function getLotTypeById(lotTypeId: number): recordTypes.LotType;
|
|
export declare function getLotTypesByLotType(lotType: string): recordTypes.LotType;
|
|
export declare function clearLotTypesCache(): void;
|
|
export declare function getOccupancyTypes(): recordTypes.OccupancyType[];
|
|
export declare function getOccupancyTypeById(occupancyTypeId: number): recordTypes.OccupancyType;
|
|
export declare function getOccupancyTypeByOccupancyType(occupancyTypeString: string): recordTypes.OccupancyType;
|
|
export declare function clearOccupancyTypesCache(): void;
|
|
export declare function getWorkOrderTypes(): recordTypes.WorkOrderType[];
|
|
export declare function clearWorkOrderTypesCache(): void;
|