UNPKG

@sap-ai-sdk/document-grounding

Version:

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

17 lines 354 B
/** * Representation of the 'SharePointSite' schema. */ export type SharePointSite = { /** * @example "sharepoint-site-name" */ name: string; /** * @example [ * "/testFolder1", * "/testFolder2" * ] */ includePaths?: string[]; } & Record<string, any>; //# sourceMappingURL=share-point-site.d.ts.map