Merge pull request #5130 from SDA-SE/feat/search-type-export

Export `ReadTreeResponseFile` and `SearchResponseFile`
This commit is contained in:
Oliver Sand
2021-03-26 11:01:11 +01:00
committed by GitHub
2 changed files with 13 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-common': patch
---
Export `ReadTreeResponseFile` and `SearchResponseFile`.
+8 -2
View File
@@ -14,9 +14,15 @@
* limitations under the License.
*/
export type { UrlReader, ReadTreeResponse, SearchResponse } from './types';
export { UrlReaders } from './UrlReaders';
export { AzureUrlReader } from './AzureUrlReader';
export { BitbucketUrlReader } from './BitbucketUrlReader';
export { GithubUrlReader } from './GithubUrlReader';
export { GitlabUrlReader } from './GitlabUrlReader';
export type {
ReadTreeResponse,
ReadTreeResponseFile,
SearchResponse,
SearchResponseFile,
UrlReader,
} from './types';
export { UrlReaders } from './UrlReaders';