ignore CatalogInputPluginOptions

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2022-08-19 16:54:51 +02:00
parent a291688bc5
commit 6c905ee227
3 changed files with 1 additions and 7 deletions
-5
View File
@@ -73,11 +73,6 @@ export const CatalogEntityPage: () => JSX.Element;
// @public (undocumented)
export const CatalogIndexPage: (props: DefaultCatalogPageProps) => JSX.Element;
// @public (undocumented)
export type CatalogInputPluginOptions = {
createButtonTitle: string;
};
// @public (undocumented)
export function CatalogKindHeader(props: CatalogKindHeaderProps): JSX.Element;
-1
View File
@@ -37,7 +37,6 @@ export * from './components/EntityProcessingErrorsPanel';
export * from './components/EntitySwitch';
export * from './components/FilteredEntityLayout';
export * from './overridableComponents';
export type { CatalogInputPluginOptions } from './options';
export {
CatalogEntityPage,
CatalogIndexPage,
+1 -1
View File
@@ -20,7 +20,7 @@ export type CatalogPluginOptions = {
createButtonTitle: string;
};
/** @public */
/** @ignore */
export type CatalogInputPluginOptions = {
createButtonTitle: string;
};