mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-14 00:04:59 -05:00
25 lines
424 B
TypeScript
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;
|
|
};
|