Files
InvokeAI/invokeai/frontend/web/src/services/api/models/ImageOutput.ts
2023-06-14 19:26:02 +12:00

25 lines
424 B
TypeScript

/* 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;
};