update api report

Signed-off-by: Joe Patterson <jrwpatterson@gmail.com>
This commit is contained in:
Joe Patterson
2022-11-22 20:50:50 +10:00
parent 67cedfe42e
commit b580cb3bd2
+4
View File
@@ -13,6 +13,7 @@ import { InfoCardVariants } from '@backstage/core-components';
// @public (undocumented)
export const EntityGroupProfileCard: (props: {
variant?: InfoCardVariants | undefined;
hideLinks?: boolean | undefined;
}) => JSX.Element;
// @public (undocumented)
@@ -32,11 +33,13 @@ export const EntityOwnershipCard: (props: {
// @public (undocumented)
export const EntityUserProfileCard: (props: {
variant?: InfoCardVariants | undefined;
hideLinks?: boolean | undefined;
}) => JSX.Element;
// @public (undocumented)
export const GroupProfileCard: (props: {
variant?: InfoCardVariants;
hideLinks?: boolean;
}) => JSX.Element;
// @public (undocumented)
@@ -75,5 +78,6 @@ export const OwnershipCard: (props: {
// @public (undocumented)
export const UserProfileCard: (props: {
variant?: InfoCardVariants;
hideLinks?: boolean;
}) => JSX.Element;
```