25 lines
1.9 KiB
TypeScript
25 lines
1.9 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 getLotOccupantTypeByLotOccupantType(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 getAllOccupancyTypeFields(): recordTypes.OccupancyTypeField[];
|
|
export declare function getOccupancyTypeById(occupancyTypeId: number): recordTypes.OccupancyType;
|
|
export declare function getOccupancyTypeByOccupancyType(occupancyTypeString: string): recordTypes.OccupancyType;
|
|
export declare function getOccupancyTypePrintsById(occupancyTypeId: number): string[];
|
|
export declare function clearOccupancyTypesCache(): void;
|
|
export declare function getWorkOrderTypes(): recordTypes.WorkOrderType[];
|
|
export declare function clearWorkOrderTypesCache(): void;
|
|
export declare function getWorkOrderMilestoneTypes(): recordTypes.WorkOrderMilestoneType[];
|
|
export declare function getWorkOrderMilestoneTypeByWorkOrderMilestoneType(workOrderMilestoneTypeString: string): recordTypes.WorkOrderMilestoneType;
|
|
export declare function clearWorkOrderMilestoneTypesCache(): void;
|