@typia/website
    Preparing search index...
    interface IBoolean {
        default?: null | boolean;
        deprecated?: boolean;
        description?: string;
        enum?: (null | boolean)[];
        example?: any;
        examples?: any[];
        readOnly?: boolean;
        title?: string;
        type: "boolean";
        writeOnly?: boolean;
        "x-nullable"?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    default?: null | boolean
    deprecated?: boolean

    Whether the type is deprecated or not.

    description?: string

    Detailed description of the schema.

    enum?: (null | boolean)[]
    example?: any

    Example value.

    examples?: any[]
    readOnly?: boolean

    Whether the property is read-only.

    title?: string

    Title of the schema.

    type: "boolean"

    Discriminator value of the type.

    writeOnly?: boolean

    Whether the property is write-only.

    "x-nullable"?: boolean