@langchain/community
Version:
Third-party integrations for LangChain.js
13 lines (12 loc) • 429 B
TypeScript
import { InStatement, InValue } from "@libsql/client";
//#region src/utils/sqlite_where_builder.d.ts
type WhereCondition<Metadata extends Record<string, any> = Record<string, any>> = { [Key in keyof Metadata]: {
operator: "=" | ">" | "<" | ">=" | "<=" | "<>" | "LIKE";
value: InValue;
} | {
operator: "IN";
value: InValue[];
} };
//#endregion
export { WhereCondition };
//# sourceMappingURL=sqlite_where_builder.d.ts.map