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
I get a TS warning: server/src/main.ts(46,60): error TS2339: Property 'length' does not exist on type 'List<BinData>'.
The length outputs the correct length, while size outputs undefined...
The text was updated successfully, but these errors were encountered:
No, what's weird is i should be able to output the size, since it's an Immutable... I don't really care about the TS warning.
It's as if my Immutable List acted as a regular Array...
in
server/src/main.js
, i try to log the size of an ImmutableList<BinData>
.console.log('SAVING BIIIIIIIIINS !!!', data.action.bins.length, data.action.bins.size);
I get a TS warning:
server/src/main.ts(46,60): error TS2339: Property 'length' does not exist on type 'List<BinData>'.
The
length
outputs the correct length, whilesize
outputsundefined
...The text was updated successfully, but these errors were encountered: