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

11 lines
423 B
Plaintext

import { GraphQLScalarType } from 'graphql';
export type RegularExpressionErrorMessageFn = (r: RegExp, v: any) => string;
export interface RegularExpressionOptions {
errorMessage?: RegularExpressionErrorMessageFn;
description?: string;
stringOnly?: boolean;
}
export declare class RegularExpression extends GraphQLScalarType {
constructor(name: string, regex: RegExp, options?: RegularExpressionOptions);
}