eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
10 lines (9 loc) • 509 B
TypeScript
import type { StandardJSONSchemaV1 } from "#compiled/@standard-schema/spec/index.js";
import { type JsonObject } from "#shared/json.js";
type JsonSchemaDirection = "input" | "output";
/**
* Normalizes one Standard Schema or JSON Schema definition into plain JSON
* Schema data that can cross eve runtime and client boundaries.
*/
export declare function normalizeJsonSchemaDefinition(value: StandardJSONSchemaV1 | Record<string, unknown> | unknown, direction?: JsonSchemaDirection): JsonObject;
export {};