blob: 53b6869c0388ca567647ff3ea6df8e3983b826a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error: TS2322 [ERROR]: Type 'number' is not assignable to type 'string'.
const _strValue1: string = NUMBER_VALUE;
~~~~~~~~~~
at file:///[WILDCARD]/main.ts:8:7
TS2322 [ERROR]: Type 'number' is not assignable to type 'string'.
const _strValue2: string = test.getValue();
~~~~~~~~~~
at file:///[WILDCARD]/main.ts:9:7
Found 2 errors.
|