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