import { ImageOptions } from './types'; export default class Image { /** * The source of the image */ src: string; /** * Image width */ width: number; /** * Image height */ height: number; /** * Image file format */ format: string; constructor(options: ImageOptions); }