TenantAtlas/apps/platform/.pnpm-store/v10/files/66/49d6aae6ac8218302cb641e40901f6b01b8dc1ce2f5299d6e2a0bb21b30bf050744d37485d06f1a638b42f25675748df985643930caf7bf1b2ae94141e06c8
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

23 lines
846 B
Plaintext

import { entityKind } from "../entity.cjs";
import { type SingleStoreTableFn } from "./table.cjs";
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;