13 lines
472 B
TypeScript
13 lines
472 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): boolean;
|
|
export default updateLotTypeField;
|