Table of Contents

Class TsTypes

Namespace
SunamoDevCode.Constants
Assembly
SunamoDevCode.dll

TypeScript primitive and built-in type names as string constants.

public class TsTypes
Inheritance
TsTypes
Inherited Members
Extension Methods

Fields

Bigint

TypeScript bigint type.

public const string Bigint = "bigint"

Field Value

string

Boolean

TypeScript boolean type.

public const string Boolean = "boolean"

Field Value

string

Function

TypeScript function type.

public const string Function = "function"

Field Value

string

Number

TypeScript number type.

public const string Number = "number"

Field Value

string

Object

TypeScript object type. The TypeScript object type represents all values that are not in primitive types. All other types here are primitive types.

public const string Object = "object"

Field Value

string

String

TypeScript string type.

public const string String = "string"

Field Value

string

Symbol

public const string Symbol = "symbol"

Field Value

string

Undefined

TypeScript undefined type.

public const string Undefined = "undefined"

Field Value

string