@metreeca/blue - v0.9.1
    Preparing search index...

    Interface BooleanShape

    Shape definition for boolean values.

    Validates boolean literals. Boolean shapes accept only true or false values and do not support additional constraints.

    interface BooleanShape {
        kind: "boolean";
        model: boolean;
    }
    Index

    Properties

    Properties

    kind: "boolean"

    Discriminator identifying this as a boolean shape.

    model: boolean

    Prototype value for runtime model assembly.

    false