Files
klz-cables.com/.pnpm-store/v10/files/68/c4c3915866738845b410d870106de1bf6117ec87e3b0698b96e3c9043a0dd09730d91c91b1020df045e387c28b475282a0523e27697606de37d6a8dbd0a0c8
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

33 lines
1.0 KiB
Plaintext

/**
* Parses input into a SemVer interface
* @param {string} input - string representation of a semver version
* @returns {SemVer}
*/
export function parseSemver(input: string): SemVer;
/**
* Returns the version of Next.js installed in the project, or undefined if it cannot be determined.
* @returns {SemVer | undefined}
*/
export function getNextjsVersion(): SemVer | undefined;
/**
* Checks if the current Next.js version supports Turbopack externalize transitive dependencies.
* This was introduced in Next.js v16.1.0-canary.3
* @param {SemVer | undefined} version
* @returns {boolean}
*/
export function supportsTurbopackExternalizeTransitiveDependencies(version: SemVer | undefined): boolean;
/**
* Represents Semantic Versioning object
*/
export type SemVer = {
buildmetadata?: string;
/**
* - undefined if not a canary version
*/
canaryVersion?: number;
major?: number;
minor?: number;
patch?: number;
prerelease?: string;
};
//# sourceMappingURL=withPayload.utils.d.ts.map