Files
klz-cables.com/.pnpm-store/v10/files/34/35f1293153f079d9ab3a13dd605a1479f1e1a8765c94cb49870f0b78fad979567bed4b0d5fb395d407d9b91c3576a280206af48c5c55bb009f9c649b5ead2a
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

8 lines
364 B
Plaintext

/// <reference types="lodash" />
import { Options } from './index';
import { AST } from './types/AST';
export declare function generate(ast: AST, options?: Options): string;
declare function generateTypeUnmemoized(ast: AST, options: Options): string;
export declare const generateType: typeof generateTypeUnmemoized & import("lodash").MemoizedFunction;
export {};