10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TS signature for empty Seq constructor doesn't allow manually setting generic type.
Is: function Seq(): Seq<unknown, unknown>;
function Seq(): Seq<unknown, unknown>;
Should be: function Seq<K = unknown, V = unknown>(): Seq<K, V>;
function Seq<K = unknown, V = unknown>(): Seq<K, V>;
Same problem for Seq.Keyed, Seq.Indexed and Seq.Set.
Seq.Keyed
Seq.Indexed
Seq.Set
Version: 4.0.0-rc.15
4.0.0-rc.15