Action
    Preparing search index...

    Type Alias JsType<Tdotnet>

    JsType: Tdotnet extends Int16
    | Int32
    | Int64
        ? number
        : Tdotnet extends UInt16
        | UInt32
        | UInt64
            ? number
            : Tdotnet extends Single
            | Double
            | Decimal
                ? number
                : Tdotnet extends Byte
                | Char
                    ? number
                    : Tdotnet extends Boolean
                        ? boolean
                        : Tdotnet extends String
                            ? string
                            : Tdotnet extends Spotfire.Object
                                ? Tdotnet
                                : System.Object extends Tdotnet ? unknown : Tdotnet

    Maps the .NET type to the equivalent JS type.

    Type Parameters

    • Tdotnet