Skip to main content
Glama
vite-env.d.ts794 B
/// <reference types="vite/client" /> declare module "sql.js" { export interface Database { run(sql: string, params?: unknown[]): void; exec(sql: string): QueryExecResult[]; prepare(sql: string): Statement; close(): void; } export interface Statement { bind(params?: unknown[]): boolean; step(): boolean; get(): unknown[]; getColumnNames(): string[]; free(): void; reset(): void; } export interface QueryExecResult { columns: string[]; values: unknown[][]; } export interface SqlJsStatic { Database: new (data?: ArrayLike<number>) => Database; } export interface InitSqlJsOptions { locateFile?: (file: string) => string; } export default function initSqlJs(options?: InitSqlJsOptions): Promise<SqlJsStatic>; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MerzoukeMansouri/adeo-mozaic-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server