manifest
Version:
The backend for AI code editors
15 lines (14 loc) • 360 B
TypeScript
export declare class BaseSDK {
slug: string;
isSingleEntity: boolean;
queryParams: {
[]: string;
};
from(slug: string): this;
where(whereClause: string): this;
andWhere(whereClause: string): this;
orderBy(propName: string, order?: {
desc: boolean;
}): this;
with(relations: string[]): this;
}