export SidebarSearchProps

Signed-off-by: Dede Hamzah <dehamzah@gmail.com>
This commit is contained in:
Dede Hamzah
2021-12-10 17:36:17 +07:00
parent e30420a125
commit 71dc1bba1c
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -8,6 +8,7 @@
import { ApiRef } from '@backstage/core-plugin-api';
import { AsyncState } from 'react-use/lib/useAsync';
import { BackstagePlugin } from '@backstage/core-plugin-api';
import { IconComponent } from '@backstage/core-plugin-api';
import { IndexableDocument } from '@backstage/search-common';
import { JsonObject } from '@backstage/types';
import { default as React_2 } from 'react';
@@ -210,10 +211,11 @@ export const SearchType: ({
defaultValue,
}: SearchTypeProps) => JSX.Element;
// Warning: (ae-forgotten-export) The symbol "SidebarSearchProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "SidebarSearch" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const SidebarSearch: () => JSX.Element;
export const SidebarSearch: (props: SidebarSearchProps) => JSX.Element;
// Warning: (ae-missing-release-tag) "SidebarSearchModal" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
@@ -21,7 +21,7 @@ import { rootRouteRef } from '../../plugin';
import { SidebarSearchField } from '@backstage/core-components';
import { useRouteRef, IconComponent } from '@backstage/core-plugin-api';
type SidebarSearchProps = {
export type SidebarSearchProps = {
icon?: IconComponent;
};