5 lines
375 B
TypeScript
5 lines
375 B
TypeScript
import type * as recordTypes from "../../types/recordTypes";
|
|
declare type RecordTable = "FeeCategories" | "LotStatuses" | "LotTypes" | "OccupancyTypes" | "WorkOrderMilestoneTypes" | "WorkOrderTypes";
|
|
export declare function updateRecord(recordTable: RecordTable, recordId: number | string, recordName: string, requestSession: recordTypes.PartialSession): boolean;
|
|
export {};
|