Promise<T extends JSAny?> typedef
Retained for backwards compatibility with anyone importing plotline_web.dart
directly. This used to be a hand-rolled @staticInterop class; its external
members tripped the dart2wasm interop checks, so it is now an alias for the
built-in JSPromise.
Implementation
@Deprecated('Use JSPromise from dart:js_interop instead.')
typedef Promise<T extends JSAny?> = JSPromise<T>;