14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
import { moveRecordUp, moveRecordUpToTop } from "./moveRecord.js";
|
|
|
|
export function moveLotTypeUp(lotTypeId: number | string): boolean {
|
|
const success = moveRecordUp("LotTypes", lotTypeId);
|
|
return success;
|
|
}
|
|
|
|
export function moveLotTypeUpToTop(lotTypeId: number | string): boolean {
|
|
const success = moveRecordUpToTop("LotTypes", lotTypeId);
|
|
return success;
|
|
}
|
|
|
|
export default moveLotTypeUp;
|