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

15 lines
242 B
TypeScript

/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* A collection of floats
*/
export type FloatCollectionOutput = {
type?: 'float_collection';
/**
* The float collection
*/
collection?: Array<number>;
};