Type Alias CsType<Tjs>

CsType<Tjs>: Tjs extends number
    ?
        | Int16
        | Int32
        | Int64
        | UInt16
        | UInt32
        | UInt64
        | Decimal
        | Single
        | Double
        | Byte
        | Char
    : Tjs extends boolean
        ? Boolean
        : Tjs extends string
            ? String
            : Tjs

Maps the JS type to the equivalent .NET type.

Type Parameters

  • Tjs