Type Alias Txt2ImgResponse<T>

Txt2ImgResponse: {
    images: string[];
    info: string;
    parameters: Txt2ImgOptions & Pick<T, keyof Txt2ImgOptions>;
}

Type Parameters

Type declaration

  • images: string[]

    The generated images as base64 strings

  • info: string

    JSON String representation of the parameters

  • parameters: Txt2ImgOptions & Pick<T, keyof Txt2ImgOptions>

    Used parameters for generating the images