Fix ae-forgotten-export

// Warning: (ae-forgotten-export) The symbol
"StackOverflowSearchResultListItemProps" needs to be exported by the
entry point index.d.ts

Signed-off-by: Zach Hammer <zhammer@seatgeek.com>
This commit is contained in:
Zach Hammer
2023-04-18 17:26:38 -04:00
parent c1ff65f315
commit 0a59de68db
3 changed files with 7 additions and 0 deletions
+1
View File
@@ -30,5 +30,6 @@ export type {
StackOverflowQuestionsContentProps,
StackOverflowQuestionsRequestParams,
} from './types';
export type { StackOverflowSearchResultListItemProps } from './search/StackOverflowSearchResultListItem';
export { stackOverflowApiRef } from './api';
export type { StackOverflowApi } from './api';
@@ -29,6 +29,11 @@ import { useAnalytics } from '@backstage/core-plugin-api';
import { ResultHighlight } from '@backstage/plugin-search-common';
import { HighlightedSearchResultText } from '@backstage/plugin-search-react';
/**
* Props for {@link StackOverflowSearchResultListItem}
*
* @public
*/
export type StackOverflowSearchResultListItemProps = {
result?: any; // TODO(emmaindal): type to StackOverflowDocument.
icon?: React.ReactNode;
@@ -15,3 +15,4 @@
*/
export { StackOverflowSearchResultListItem } from './StackOverflowSearchResultListItem';
export type { StackOverflowSearchResultListItemProps } from './StackOverflowSearchResultListItem';