Files
klz-cables.com/.pnpm-store/v10/files/1a/a9fd89489f07fe0ff29a38cb31e280b4366eec9dc85edb9af392f43c6c28a7aa9e56cc22528b9591e439ac6580f81af7406f911e8d925f2d54cd37746344c8
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

16 lines
519 B
Plaintext

import { AuthenticationData, RefreshOptions } from "../../../auth/types.js";
import { RestCommand } from "../../types.js";
//#region src/rest/commands/auth/refresh.d.ts
/**
* Retrieve a new access token using a refresh token.
*
* @param options Optional refresh settings.
*
* @returns The new access and refresh tokens for the session.
*/
declare const refresh: <Schema>(options?: RefreshOptions) => RestCommand<AuthenticationData, Schema>;
//#endregion
export { refresh };
//# sourceMappingURL=refresh.d.ts.map