@devvai/devv-code-backend
Version:
Backend SDK for Devv Code - Provides authentication, data management, email and AI capabilities
8 lines (7 loc) • 399 B
TypeScript
import type { GetItemsOptions, GetItemsResponse, ItemData } from './types';
export declare class ProjectTable {
addItem(tableId: string, data: Record<string, any>): Promise<void>;
getItems(tableId: string, options?: GetItemsOptions): Promise<GetItemsResponse>;
updateItem(tableId: string, data: ItemData): Promise<void>;
deleteItem(tableId: string, keys: ItemData): Promise<void>;
}