I'm trying to develop google extension, but found that I can't reference the chrome
object without generating:
ERROR in E:/ChromeExtensions/.../node_modules/chrome-promise/chrome-promise.d.ts (2160,66): Cannot find namespace 'chrome'.
or
ERROR in E:/ChromeExtensions/.../src/app/chrome-tabs.servi ce.ts (14,7): Cannot find name 'chrome'.
I have added chrome typings npm install --save @types/chrome
but it doesn't resolve build errors.
Any suggestions?
window['chrome']
– Delogu