Files
klz-cables.com/.pnpm-store/v10/files/0b/9fa8693d094e537ac80bd1b5ed299b21265858eb8ff2e8b7b3334d9220a67d408afaefb8e206c550e35a60ec514ecb45a4e35cb7619922b2061d9d57a644ed
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
522 B
Plaintext

import { AuthenticationData, RefreshOptions } from "../../../auth/types.cjs";
import { RestCommand } from "../../types.cjs";
//#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.cts.map