Files
klz-cables.com/.pnpm-store/v10/files/3b/3f5b943f96776639e1728548b6727c47cb60dffe607f33b50adf976e3511d1cefec9808d931fcf5139a1321863eb5b7349ac4651f0dbd6103ed0d3c51df342
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

60 lines
2.3 KiB
Plaintext

/* auto-generated by NAPI-RS */
/* eslint-disable */
export class Compiler {
constructor()
}
export type JsCompiler = Compiler
export declare function analyze(src: string, options: Buffer, signal?: AbortSignal | undefined | null): Promise<string>
export declare function bundle(confItems: Buffer, signal?: AbortSignal | undefined | null): Promise<{ [index: string]: { code: string, map?: string } }>
export declare function getTargetTriple(): string
export declare function initCustomTraceSubscriber(traceOutFilePath?: string | undefined | null): void
export declare function minify(code: Buffer, opts: Buffer, isJson: boolean, extras: NapiMinifyExtra, signal?: AbortSignal | undefined | null): Promise<TransformOutput>
export declare function minifySync(code: Buffer, opts: Buffer, isJson: boolean, extras: NapiMinifyExtra): TransformOutput
export interface NapiMinifyExtra {
mangleNameCache?: object
}
export declare function newMangleNameCache(): object
export declare function parse(src: Buffer | string, options: Buffer, filename?: string | undefined | null, signal?: AbortSignal | undefined | null): Promise<string>
export declare function parseFile(path: string, options: Buffer, signal?: AbortSignal | undefined | null): Promise<string>
export declare function parseFileSync(path: string, opts: Buffer): string
export declare function parseSync(src: Buffer | string, opts: Buffer, filename?: string | undefined | null): string
export declare function print(programJson: string, options: Buffer, signal?: AbortSignal | undefined | null): Promise<TransformOutput>
export declare function printSync(program: string, options: Buffer): TransformOutput
export declare function transform(src: string, isModule: boolean, options: Buffer, signal?: AbortSignal | undefined | null): Promise<TransformOutput>
export declare function transformFile(src: string, isModule: boolean, options: Buffer, signal?: AbortSignal | undefined | null): Promise<TransformOutput>
export declare function transformFileSync(s: string, isModule: boolean, opts: Buffer): TransformOutput
export interface TransformOutput {
code: string
map?: string
output?: string
diagnostics: Array<string>
}
/** Hack for `Type Generation` */
export interface TransformOutput {
code: string
map?: string
}
export declare function transformSync(s: string, isModule: boolean, opts: Buffer): TransformOutput