UNPKG

@omnia/fx-models

Version:
15 lines (14 loc) 412 B
import { ImageItem } from "@omnia/fx-models"; import { BaseResponse } from "./BaseResponse"; export interface AiImageResponse extends BaseResponse { result: ImageDataResult; } export interface GeneratedImage extends ImageItem { serverImage: ImageDataResult; } export interface ImageDataResult { caption: string; contentUrl: string; contentUrlExpiresAt: string; createdDateTime: string; }