@langchain/core
Version:
Core LangChain.js abstractions and schemas
12 lines (11 loc) • 371 B
text/typescript
import { JsonSchema7Type } from "../parseTypes.cjs";
//#region src/utils/zod-to-json-schema/parsers/object.d.ts
type JsonSchema7ObjectType = {
type: "object";
properties: Record<string, JsonSchema7Type>;
additionalProperties?: boolean | JsonSchema7Type;
required?: string[];
};
//#endregion
export { JsonSchema7ObjectType };
//# sourceMappingURL=object.d.cts.map