/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface ImageDescriptorAsResponse { /** * The width of the image. */ width?: number; /** * The height of the image. */ height?: number; /** * The URL of the image. */ url?: string; } //# sourceMappingURL=ImageDescriptorAsResponse.d.ts.map