@xsai/model 0.3.0-beta.1 → 0.3.0-beta.3
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.
- package/dist/index.d.ts +2 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -15,8 +15,6 @@ interface ListModelsResponse {
|
|
|
15
15
|
}
|
|
16
16
|
declare const listModels: (options: ListModelsOptions) => Promise<Model[]>;
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
}
|
|
20
|
-
declare const retrieveModel: (options: RetrieveModelOptions) => Promise<Model>;
|
|
18
|
+
declare const retrieveModel: (options: CommonRequestOptions) => Promise<Model>;
|
|
21
19
|
|
|
22
|
-
export { type ListModelsOptions, type ListModelsResponse, type Model,
|
|
20
|
+
export { type ListModelsOptions, type ListModelsResponse, type Model, listModels, retrieveModel };
|