Skip to content

Serializable

@tsed/cli-mcp

Usage

typescript
import { Serializable } 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 Serializable = {
    [key: string]: Serializable;
} | Serializable[] | string | number | boolean | null;

[key: string]

ts
[key: string]: Serializable;

Released under the MIT License.