KeithHenry / chromeExtensionAsync

Promise wrapper for the Chrome extension API so that it can be used with async/await rather than callbacks
MIT License
228 stars 32 forks source link

Namespace chrome.sockets.* is missing from typescript file #16

Closed aeons closed 2 years ago

aeons commented 5 years ago

If the typescript definitions are generated somehow, it should probably be regenerated.

KeithHenry commented 5 years ago

@aeons They aren't, as the supported list is hand coded the definitions are too. I haven't found a reliable way to auto-detect which Chrome API calls can be promisified with the pattern, so the supported selection is kind of a whitelist of ones that work.

chrome.sockets.* needs adding to the TS definitions.

UrielCh commented 5 years ago

chrome.debugger.* is also missing.

UrielCh commented 5 years ago

thx.