@@ -6,7 +6,7 @@ immutable.ts(289,22): error TS2320: Interface 'Indexed<T>' cannot simultaneously
66immutable.ts(305,22): error TS2320: Interface 'Set<T>' cannot simultaneously extend types 'Seq<never, T>' and 'Set<T>'.
77 Named property 'size' of types 'Seq<never, T>' and 'Set<T>' are not identical.
88immutable.ts(323,20): error TS2430: Interface 'Seq<K, V>' incorrectly extends interface 'Collection<K, V>'.
9- The types of 'map(...).filter(...). size' are incompatible between these types.
9+ The types of 'map(...).size' are incompatible between these types.
1010 Type 'number | undefined' is not assignable to type 'number'.
1111 Type 'undefined' is not assignable to type 'number'.
1212immutable.ts(341,22): error TS2430: Interface 'Keyed<K, V>' incorrectly extends interface 'Collection<K, V>'.
@@ -382,7 +382,7 @@ immutable.ts(391,22): error TS2430: Interface 'Set<T>' incorrectly extends inter
382382 export interface Seq<K, V> extends Collection<K, V> {
383383 ~~~
384384!!! error TS2430: Interface 'Seq<K, V>' incorrectly extends interface 'Collection<K, V>'.
385- !!! error TS2430: The types of 'map(...).filter(...). size' are incompatible between these types.
385+ !!! error TS2430: The types of 'map(...).size' are incompatible between these types.
386386!!! error TS2430: Type 'number | undefined' is not assignable to type 'number'.
387387!!! error TS2430: Type 'undefined' is not assignable to type 'number'.
388388 readonly size: number | undefined;
0 commit comments