UNPKG

manifest

Version:

The backend for AI code editors

15 lines (14 loc) 360 B
export declare class BaseSDK { slug: string; isSingleEntity: boolean; queryParams: { [key: string]: string; }; from(slug: string): this; where(whereClause: string): this; andWhere(whereClause: string): this; orderBy(propName: string, order?: { desc: boolean; }): this; with(relations: string[]): this; }