@omnia/fx-models 8.0.166-dev → 8.0.167-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,9 @@ import { BaseResponse } from "./BaseResponse";
|
|
2
2
|
export interface TextToImageResponse extends TextToImageResult {
|
3
3
|
}
|
4
4
|
export interface TextToImageResult extends BaseResponse {
|
5
|
-
|
6
|
-
|
5
|
+
created: number;
|
6
|
+
data: Array<TextToImageItem>;
|
7
|
+
}
|
8
|
+
export interface TextToImageItem {
|
9
|
+
url: string;
|
7
10
|
}
|