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

14 lines
495 B
TypeScript

import type * as recordTypes from '../../types/recordTypes';
interface AddLotTypeFieldForm {
lotTypeId: string | number;
lotTypeField: string;
lotTypeFieldValues?: string;
isRequired?: string;
pattern?: string;
minimumLength: string | number;
maximumLength: string | number;
orderNumber?: number;
}
export declare function addLotTypeField(lotTypeFieldForm: AddLotTypeFieldForm, requestSession: recordTypes.PartialSession): number;
export default addLotTypeField;