Export FossaPageProps

Signed-off-by: Oliver Sand <oliver.sand@sda-se.com>
This commit is contained in:
Oliver Sand
2021-10-18 09:54:13 +02:00
parent 09c106b96c
commit a6a283d760
4 changed files with 14 additions and 3 deletions
+10 -1
View File
@@ -18,12 +18,21 @@ export const EntityFossaCard: ({
variant?: InfoCardVariants | undefined;
}) => JSX.Element;
// Warning: (ae-forgotten-export) The symbol "FossaPageProps" needs to be exported by the entry point index.d.ts
// Warning: (ae-missing-release-tag) "FossaPage" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export const FossaPage: ({ entitiesFilter }: FossaPageProps) => JSX.Element;
// Warning: (ae-missing-release-tag) "FossaPageProps" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type FossaPageProps = {
entitiesFilter?:
| Record<string, string | symbol | (string | symbol)[]>[]
| Record<string, string | symbol | (string | symbol)[]>
| undefined;
};
// Warning: (ae-missing-release-tag) "fossaPlugin" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
@@ -15,3 +15,4 @@
*/
export { FossaPage } from './FossaPage';
export type { FossaPageProps } from './FossaPage';
+1 -1
View File
@@ -14,4 +14,4 @@
* limitations under the License.
*/
export * from './FossaCard';
export type { FossaPageProps } from './FossaPage';
+2 -1
View File
@@ -20,5 +20,6 @@
* @packageDocumentation
*/
export { fossaPlugin } from './plugin';
export * from './components';
export { EntityFossaCard, FossaPage } from './extensions';
export { fossaPlugin } from './plugin';