Cluster Creator Kit Script Reference
    Preparing search index...

    Type Alias ExtJSON<T>

    ExtJSON:
        | { [key: string]: ExtJSON<T> }
        | ExtJSON<T>[]
        | number
        | string
        | boolean
        | null
        | T

    This type extends the primitives of data structures that are representable as JSON, by also including T.

    Unlike ordinary JSON, this type can also handle Infinity, -Infinity, and NaN as numbers.

    Type Parameters

    • T