@langchain/core
Version:
Core LangChain.js abstractions and schemas
11 lines (10 loc) • 305 B
text/typescript
//#region src/utils/zod-to-json-schema/parsers/literal.d.ts
type JsonSchema7LiteralType = {
type: "string" | "number" | "integer" | "boolean";
const: string | number | boolean;
} | {
type: "object" | "array";
};
//#endregion
export { JsonSchema7LiteralType };
//# sourceMappingURL=literal.d.cts.map