Skip to content

Refs

@tsed/cli-mcp

Usage

typescript
import { Refs } from "@tsed/cli-mcp/src/utils/json-schema-to-zod/Types";

See /packages/cli-mcp/src/utils/json-schema-to-zod/Types.ts.

Overview

ts
type Refs = Options & {
    path: (string | number)[];
    seen: Map<object | boolean, {
        n: number;
        r: string | undefined;
    }>;
};

path:

ts
path: (string | number)[];

seen

ts
seen: Map<object | boolean, {
     n: number;
     r: string | undefined;
 }>;

Released under the MIT License.