@@ -94,7 +94,7 @@ describe('Observable.prototype.concatMap', () => {
9494 const e1subs = '^ ! ' ;
9595 const expected = '--a-a-a-a---b--b--b-------c-c-c-----(d|)' ;
9696
97- const observableLookup = { a : a , b : b , c : c , d : d } ;
97+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d } ;
9898 const source = e1 . pipe ( concatMap ( ( value ) => observableLookup [ value ] ) ) ;
9999
100100 expectObservable ( source ) . toBe ( expected ) ;
@@ -324,7 +324,7 @@ describe('Observable.prototype.concatMap', () => {
324324 const e1 = hot ( '-a-b--^-c-----d------e----------------f-----g| ' ) ;
325325 const e1subs = '^ ! ' ;
326326 const expected = '---2--3--4--5----6-----2--3-1------2--3-4-5--------1-2|' ;
327- const observableLookup = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
327+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
328328
329329 const result = e1 . pipe ( concatMap ( ( value ) => observableLookup [ value ] ) ) ;
330330
@@ -357,7 +357,7 @@ describe('Observable.prototype.concatMap', () => {
357357 const e1 = hot ( '-a-b--^-c-----d------e----------------f-----g| ' ) ;
358358 const e1subs = '^ ! ' ;
359359 const expected = '---2--3--4--5----6-----2--3----------------------------' ;
360- const observableLookup = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
360+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
361361
362362 const result = e1 . pipe ( concatMap ( ( value ) => observableLookup [ value ] ) ) ;
363363
@@ -390,7 +390,7 @@ describe('Observable.prototype.concatMap', () => {
390390 const e1 = hot ( '-a-b--^-c-----d------e----------------f-----g--- ' ) ;
391391 const e1subs = '^ ' ;
392392 const expected = '---2--3--4--5----6-----2--3-1------2--3-4-5--------1-2-' ;
393- const observableLookup = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
393+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
394394
395395 const result = e1 . pipe ( concatMap ( ( value ) => observableLookup [ value ] ) ) ;
396396
@@ -423,7 +423,7 @@ describe('Observable.prototype.concatMap', () => {
423423 const e1 = hot ( '-a-b--^-c-----d------e----------------f-----g# ' ) ;
424424 const e1subs = '^ ! ' ;
425425 const expected = '---2--3--4--5----6-----2--3-1------2--3# ' ;
426- const observableLookup = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
426+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
427427
428428 const result = e1 . pipe ( concatMap ( ( value ) => observableLookup [ value ] ) ) ;
429429
@@ -456,7 +456,7 @@ describe('Observable.prototype.concatMap', () => {
456456 const e1 = hot ( '-a-b--^-c-----d------e----------------f-----g| ' ) ;
457457 const e1subs = '^ ! ' ;
458458 const expected = '---2--3--4--5----6-# ' ;
459- const observableLookup = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
459+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
460460
461461 const result = e1 . pipe ( concatMap ( ( value ) => observableLookup [ value ] ) ) ;
462462
@@ -490,7 +490,7 @@ describe('Observable.prototype.concatMap', () => {
490490 const e1subs = '^ ! ' ;
491491 const unsub = ' ! ' ;
492492 const expected = '---2--3--4--5----6-----2--3-1-- ' ;
493- const observableLookup = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
493+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
494494
495495 const result = e1 . pipe ( concatMap ( ( value ) => observableLookup [ value ] ) ) ;
496496
@@ -524,7 +524,7 @@ describe('Observable.prototype.concatMap', () => {
524524 const e1subs = '^ ! ' ;
525525 const unsub = ' ! ' ;
526526 const expected = '---2--3--4--5----6-----2--3-1-- ' ;
527- const observableLookup = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
527+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
528528
529529 const result = e1 . pipe (
530530 mergeMap ( x => of ( x ) ) ,
@@ -561,7 +561,7 @@ describe('Observable.prototype.concatMap', () => {
561561 const e1 = hot ( '-a-b--^-c-----d------e----------------f-----g| ' ) ;
562562 const e1subs = '^ ! ' ;
563563 const expected = '---2--3--4--5----6-----2--3# ' ;
564- const observableLookup = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
564+ const observableLookup : Record < string , Observable < string > > = { a : a , b : b , c : c , d : d , e : e , f : f , g : g } ;
565565
566566 const result = e1 . pipe (
567567 concatMap ( ( value ) => {
0 commit comments