Typeof
typeof
Type Operator
TypeScript adds a typeof
operator you can use in a type context to refer to the type of variable or property.
let s = "hello"; let n: typeof s; // string
typeof
Type OperatorTypeScript adds a typeof
operator you can use in a type context to refer to the type of variable or property.
let s = "hello"; let n: typeof s; // string