sunrise-cms/helpers/lotOccupancyDB/updateLotTypeField.d.ts

13 lines
481 B
TypeScript

import type * as recordTypes from '../../types/recordTypes';
interface UpdateLotTypeFieldForm {
lotTypeFieldId: number | string;
lotTypeField: string;
isRequired: '0' | '1';
minimumLength?: string;
maximumLength?: string;
pattern?: string;
lotTypeFieldValues: string;
}
export declare function updateLotTypeField(lotTypeFieldForm: UpdateLotTypeFieldForm, requestSession: recordTypes.PartialSession): Promise<boolean>;
export default updateLotTypeField;