mirror of
https://github.com/denoland/deno.git
synced 2024-11-04 08:54:20 -05:00
12 lines
352 B
Text
12 lines
352 B
Text
|
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.
|