/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { ImageField } from './ImageField'; /** * Base class for invocations that output an image */ export type ImageOutput = { type: 'image_output'; /** * The output image */ image: ImageField; /** * The width of the image in pixels */ width: number; /** * The height of the image in pixels */ height: number; };