You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you compile a file like the above with tsc, you will get the following error:
index.ts:5:30 - error TS2339: Property 'value' does not exist on type 'Token'.
5 console.log(token.getToken().value);
~~~~~
Found 1 error in index.ts:5
Since the value property actually exists, the type definition is considered incorrect.