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

35 lines
1.4 KiB
Plaintext

import { entityKind } from "../../entity.js";
import { QueryPromise } from "../../query-promise.js";
import type { RunnableQuery } from "../../runnable-query.js";
import type { PreparedQuery } from "../../session.js";
import type { SQL, SQLWrapper } from "../../sql/sql.js";
import type { SQLiteAsyncDialect } from "../dialect.js";
type SQLiteRawAction = 'all' | 'get' | 'values' | 'run';
export interface SQLiteRawConfig {
action: SQLiteRawAction;
}
export interface SQLiteRaw<TResult> extends QueryPromise<TResult>, RunnableQuery<TResult, 'sqlite'>, SQLWrapper {
}
export declare class SQLiteRaw<TResult> extends QueryPromise<TResult> implements RunnableQuery<TResult, 'sqlite'>, SQLWrapper, PreparedQuery {
execute: () => Promise<TResult>;
private dialect;
private mapBatchResult;
static readonly [entityKind]: string;
readonly _: {
readonly dialect: 'sqlite';
readonly result: TResult;
};
constructor(execute: () => Promise<TResult>,
/** @internal */
getSQL: () => SQL, action: SQLiteRawAction, dialect: SQLiteAsyncDialect, mapBatchResult: (result: unknown) => unknown);
getQuery(): {
method: SQLiteRawAction;
typings?: import("../../sql/sql.js").QueryTypingsValue[];
sql: string;
params: unknown[];
};
mapResult(result: unknown, isFromBatch?: boolean): unknown;
_prepare(): PreparedQuery;
}
export {};