Files
klz-cables.com/.pnpm-store/v10/files/51/5f0e3a24d5bfc290b232f7200fc78b0be9b591d01f2195762fd6e2a9f20bcd864ce15daaf516ab400330fc159b1c0962f463f1956141fe556bda5cf061946b
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

15 lines
545 B
Plaintext

import { RestCommand } from "../../types.cjs";
//#region src/rest/commands/utils/sort.d.ts
/**
* If a collection has a sort field, this util can be used to move items in that manual order.
* @param collection The collection to sort
* @param item Id of the item to move
* @param to Id of the item to move to
* @returns Nothing
*/
declare const utilitySort: <Schema>(collection: keyof Schema, item: string | number, to: string | number) => RestCommand<void, Schema>;
//#endregion
export { utilitySort };
//# sourceMappingURL=sort.d.cts.map