Interface Property

interface Property {
    description?: string;
    enum?: (string | number)[];
    items?: InputSchema;
    properties?: Properties;
    type: "string" | "boolean" | "object" | "integer" | "array";
}

Properties

description?: string
enum?: (string | number)[]
items?: InputSchema
properties?: Properties
type: "string" | "boolean" | "object" | "integer" | "array"