Files
klz-cables.com/.pnpm-store/v10/files/98/8de234c35843aafe293f13351f506fb78e5fa142e36b144d69e8c20e9c760573a45c2fd4f2e528e11b9936db6438dd84e67fc6f16e336112df5804d94c25cf
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

23 lines
844 B
Plaintext

import { entityKind } from "../entity.js";
import { type SingleStoreTableFn } from "./table.js";
export declare class SingleStoreSchema<TName extends string = string> {
readonly schemaName: TName;
static readonly [entityKind]: string;
constructor(schemaName: TName);
table: SingleStoreTableFn<TName>;
}
/** @deprecated - use `instanceof SingleStoreSchema` */
export declare function isSingleStoreSchema(obj: unknown): obj is SingleStoreSchema;
/**
* Create a SingleStore schema.
* https://docs.singlestore.com/cloud/create-a-database/
*
* @param name singlestore use schema name
* @returns SingleStore schema
*/
export declare function singlestoreDatabase<TName extends string>(name: TName): SingleStoreSchema<TName>;
/**
* @see singlestoreDatabase
*/
export declare const singlestoreSchema: typeof singlestoreDatabase;