UNPKG

@zodash/load-image

Version:

Dynamic Load Image with Image

8 lines (7 loc) 253 B
export interface ILoadedImage { url: string; image: HTMLImageElement; } export declare function loadImage(url: string): Promise<ILoadedImage>; export declare function loadImage(urls: string[]): Promise<ILoadedImage[]>; export default loadImage;