mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-28 14:43:37 +00:00
6 lines
269 B
TypeScript
6 lines
269 B
TypeScript
// JSON schema shared types keep TypeBox schema aliases consistent across callers.
|
|
import type { TSchema } from "typebox";
|
|
|
|
/** TypeBox schema value widened for generic JSON-schema object transforms. */
|
|
export type JsonSchemaObject = TSchema & Record<string, unknown>;
|