chore: export the types properly and update the api-report

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-10-25 10:34:01 +02:00
parent d184e50c50
commit 4289ac5322
3 changed files with 10 additions and 2 deletions
+8 -1
View File
@@ -645,7 +645,14 @@ export class EntityTypeFilter implements EntityFilter {
readonly value: string | string[];
}
// Warning: (ae-forgotten-export) The symbol "EntityTypeFilterProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "EntityTypeFilterProps" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type EntityTypeFilterProps = {
initialFilter?: string;
hidden?: boolean;
};
// Warning: (ae-missing-release-tag) "EntityTypePicker" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
@@ -22,7 +22,7 @@ import { useEntityTypeFilter } from '../../hooks/useEntityTypeFilter';
import { alertApiRef, useApi } from '@backstage/core-plugin-api';
import { Select } from '@backstage/core-components';
type EntityTypeFilterProps = {
export type EntityTypeFilterProps = {
initialFilter?: string;
hidden?: boolean;
};
@@ -15,3 +15,4 @@
*/
export { EntityTypePicker } from './EntityTypePicker';
export type { EntityTypeFilterProps } from './EntityTypePicker';