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