UNPKG

@augment-vir/web

Version:

A collection of augments, helpers types, functions, and classes only for web (frontend) JavaScript environments.

9 lines (8 loc) 295 B
/** * Load an image from a URL and wait for it to be totally loaded. * * @category Web * @category Package : @augment-vir/web * @package [`@augment-vir/web`](https://www.npmjs.com/package/@augment-vir/web) */ export declare function loadImage(imageUrl: string): Promise<HTMLImageElement>;