@get-milano/core 2.1.0
    Preparing search index...

    Type Alias MilanoTypeKind

    MilanoTypeKind:
        | { kind: "bool" }
        | { kind: "int" }
        | { kind: "double" }
        | { kind: "string" }
        | { kind: "enum"; members: ReadonlySet<string> }
        | { element: MilanoType; kind: "array" }
        | { fields: Readonly<Record<string, MilanoType>>; kind: "record" }

    A type from the document type system: bool, int, double, string, enum over named members, array of T, or record with named typed fields; each optionally optional.