@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
15 lines (14 loc) • 412 B
TypeScript
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;
}