sunrise-cms/database/updateLotTypeField.d.ts

12 lines
384 B
TypeScript

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