Isomorphic-fetch & typescript problem

Hi,

It seems that after typescript (Using typescript@2.2.1) upgrade there is a problem with isomporphic-fetch https://github.com/Microsoft/TypeScript/issues/4948

I was trying to update typings here typings install dt~isomorphic-fetch@0.0.33 to eliminate duplicate error

 error TS2300: Duplicate identifier 'Request'

but still there is an issue

 ERROR in C:\git\testing\webpacksimple\node_modules\servicestack-client\src\
index.d.ts
(114,11): error TS2304: Cannot find name 'RequestMode'.

ERROR in C:\git\testing\webpacksimple\node_modules\servicestack-client\src\
index.d.ts
(115,18): error TS2304: Cannot find name 'RequestCredentials'.

ERROR in C:\git\testing\webpacksimple\node_modules\servicestack-client\src\
index.d.ts
(120,27): error TS2304: Cannot find name 'IResponse'.

ERROR in C:\git\testing\webpacksimple\node_modules\servicestack-client\src\
index.d.ts
(121,28): error TS2304: Cannot find name 'IResponse'.

ERROR in C:\git\testing\webpacksimple\node_modules\servicestack-client\src\
index.d.ts
(131,21): error TS2304: Cannot find name 'IResponse'.

OK it looks like they made a breaking change to the latest version of isomorphic-fetch type defs which should be fixed in this commit. This change is available from servicestack-client v0.0.22+

BTW you likely want to use the new approach to import your Type defs, i.e from @types/isomorphic-fetch:

npm install @types/isomorphic-fetch

ok, works fine now thnx