UNPKG

@dataql/astro

Version:

DataQL Astro SDK with SSR/SSG support and multi-framework compatibility

10 lines (9 loc) 314 B
import type { DataQLAstroConfig } from "./types"; export declare class DataQLAstroClient { constructor(config: DataQLAstroConfig); find<T = any>(tableName: string, filter?: any): Promise<T[]>; create<T = any>(tableName: string, data: T): Promise<{ success: boolean; data?: T; }>; }