UNPKG

@sap-ai-sdk/document-grounding

Version:

> [!warning] > This package is still in **beta** and is subject to breaking changes. Use it with caution.

9 lines 292 B
import type { Collection } from './collection.js'; /** * A response containing collections retrieved from the server. */ export type CollectionsListResponse = { count?: number; resources: Collection[]; } & Record<string, any>; //# sourceMappingURL=collections-list-response.d.ts.map