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

14 lines
496 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 const addLotTypeField: (lotTypeFieldForm: AddLotTypeFieldForm, requestSession: recordTypes.PartialSession) => number;
export default addLotTypeField;