fix api-report warning

Signed-off-by: nikolar <reyna.nikolayev@autodesk.com>
This commit is contained in:
nikolar
2024-12-03 16:29:04 -08:00
parent 351952cb93
commit 0d7097b705
2 changed files with 15 additions and 2 deletions
+14 -2
View File
@@ -232,8 +232,6 @@ export interface PanelConfig {
filterPredicate: ((entity: Entity) => boolean) | string;
// (undocumented)
panelCSS?: CSSProperties;
// Warning: (ae-forgotten-export) The symbol "PanelProps" needs to be exported by the entry point index.d.ts
//
// (undocumented)
panelProps?: PanelProps;
// (undocumented)
@@ -242,6 +240,20 @@ export interface PanelConfig {
title: string;
}
// @public
export interface PanelProps {
// (undocumented)
linkContent?: string | JSX.Element;
// (undocumented)
linkDestination?: (entity: Entity) => string;
// (undocumented)
options?: TableOptions<DocsTableRow>;
// (undocumented)
showHeader?: boolean;
// (undocumented)
showSupport?: boolean;
}
// @public
export type PanelType =
| 'DocsCardGrid'
@@ -20,6 +20,7 @@ export * from './DefaultTechDocsHome';
export type {
PanelType,
PanelConfig,
PanelProps,
TabConfig,
TabsConfig,
TechDocsCustomHomeProps,