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 278 B
import type { DataRepository } from './data-repository.js'; /** * Representation of the 'DataRepositories' schema. */ export type DataRepositories = { count?: number; resources: DataRepository[]; } & Record<string, any>; //# sourceMappingURL=data-repositories.d.ts.map