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