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
Boolean
TypeScript boolean type.
public const string Boolean = "boolean"
Field Value
Function
TypeScript function type.
public const string Function = "function"
Field Value
Number
TypeScript number type.
public const string Number = "number"
Field Value
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
TypeScript string type.
public const string String = "string"
Field Value
Symbol
TypeScript symbol type. See https://www.typescriptlang.org/docs/handbook/symbols.html
public const string Symbol = "symbol"
Field Value
Undefined
TypeScript undefined type.
public const string Undefined = "undefined"