8 lines
301 B
TypeScript
8 lines
301 B
TypeScript
import type * as recordTypes from "../../types/recordTypes";
|
|
interface UpdateLotTypeForm {
|
|
lotTypeId: number | string;
|
|
lotType: string;
|
|
}
|
|
export declare const updateLotType: (lotTypeForm: UpdateLotTypeForm, requestSession: recordTypes.PartialSession) => boolean;
|
|
export default updateLotType;
|