File: typeGuardsInExternalModule.js

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (48 lines) | stat: -rw-r--r-- 1,296 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//// [typeGuardsInExternalModule.ts]
// Note that type guards affect types of variables and parameters only and 
// have no effect on members of objects such as properties. 

// local variable in external module
var num: number;
var var1: string | number;
if (typeof var1 === "string") {
    num = var1.length; // string
}
else {
    num = var1; // number
}

// exported variable in external module
var strOrNum: string | number;
export var var2: string | number;
if (typeof var2 === "string") {
    // export makes the var property and not variable
    strOrNum = var2; // string | number
}
else {
    strOrNum = var2; // number | string
}

//// [typeGuardsInExternalModule.js]
"use strict";
// Note that type guards affect types of variables and parameters only and 
// have no effect on members of objects such as properties. 
exports.__esModule = true;
// local variable in external module
var num;
var var1;
if (typeof var1 === "string") {
    num = var1.length; // string
}
else {
    num = var1; // number
}
// exported variable in external module
var strOrNum;
if (typeof exports.var2 === "string") {
    // export makes the var property and not variable
    strOrNum = exports.var2; // string | number
}
else {
    strOrNum = exports.var2; // number | string
}