chore: fix api-report

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2023-11-13 12:35:01 +01:00
parent e420b5af5a
commit a941bbee61
+3 -3
View File
@@ -196,7 +196,7 @@ export const EntityDisplayName: (props: EntityDisplayNameProps) => JSX.Element;
// @public
export type EntityDisplayNameProps = {
entityRef: Entity | CompoundEntityRef | string;
noIcon?: boolean;
hideIcon?: boolean;
noTooltip?: boolean;
defaultKind?: string;
defaultNamespace?: string;
@@ -399,7 +399,7 @@ export type EntityRefLinkProps = {
defaultNamespace?: string;
title?: string;
children?: React_2.ReactNode;
noIcon?: boolean;
hideIcon?: boolean;
} & Omit<LinkProps, 'to'>;
// @public
@@ -413,7 +413,7 @@ export type EntityRefLinksProps<
> = {
defaultKind?: string;
entityRefs: TRef[];
noIcons?: boolean;
hideIcons?: boolean;
fetchEntities?: boolean;
getTitle?(entity: TRef): string | undefined;
} & Omit<LinkProps, 'to'>;