Remove es6-promise from declaration file
monolithed opened this issue · 3 comments
monolithed commented
The reason why I'm asking for is:
node_modules/promise-parallel-throttle/build/throttle.d.ts(1,1): error TS2688: Cannot find type definition file for 'es6-promise'.
DJWassink commented
Could you try version 2.3.1? I removed the @types/es6-promise in favor of settings the lib compiler option in the tsconfig
monolithed commented
That works fine, but only with my PR #16
monolithed commented
Without my PR:
declare module 'promise-parallel-throttle' {
import * as promise from 'promise-parallel-throttle/build/throttle';
export = promise;
}