what is the proper TypeScript type for a WatchHandle?
I'm assuming it's 'WatchHandle' but I don't see where to import it.
Thanks!
Solved! Go to Solution.
It's not a module you can import, but is available in our namespace if you need to type something for it.
let handle: __esri.WatchHandle;
You get the namespace typings automatically when you install @arcgis/core.
It's not a module you can import, but is available in our namespace if you need to type something for it.
let handle: __esri.WatchHandle;
You get the namespace typings automatically when you install @arcgis/core.