12 lines
388 B
TypeScript
12 lines
388 B
TypeScript
interface UpdateLotTypeFieldForm {
|
|
lotTypeFieldId: number | string;
|
|
lotTypeField: string;
|
|
isRequired: '0' | '1';
|
|
minimumLength?: string;
|
|
maximumLength?: string;
|
|
pattern?: string;
|
|
lotTypeFieldValues: string;
|
|
}
|
|
export declare function updateLotTypeField(lotTypeFieldForm: UpdateLotTypeFieldForm, user: User): Promise<boolean>;
|
|
export default updateLotTypeField;
|