chore: fixing the api-reports again

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-03-17 14:10:19 +01:00
parent bbac7a2e13
commit 7af0e2efd8
3 changed files with 10 additions and 6 deletions
+6 -4
View File
@@ -371,6 +371,12 @@ export type TaskPageProps = {
loadingText?: string;
};
// @alpha (undocumented)
export type TemplateGroupFilter = {
title?: React_2.ReactNode;
filter: (entity: Entity) => boolean;
};
// @public
export type TemplateParameterSchema = {
title: string;
@@ -385,8 +391,4 @@ export const TemplateTypePicker: () => JSX.Element | null;
// @public
export const useTemplateSecrets: () => ScaffolderUseTemplateSecrets;
// Warnings were encountered during analysis:
//
// src/next/Router/Router.d.ts:16:5 - (ae-forgotten-export) The symbol "TemplateGroupFilter" needs to be exported by the entry point index.d.ts
```
+4 -1
View File
@@ -58,5 +58,8 @@ export {
NextScaffolderPage,
} from './plugin';
export * from './components';
export type { NextRouterProps } from './next';
export type { TaskPageProps } from './components/TaskPage';
/** next exports */
export type { NextRouterProps } from './next';
export type { TemplateGroupFilter } from './next';
@@ -14,4 +14,3 @@
* limitations under the License.
*/
export { TemplateWizardPage } from './TemplateWizardPage';
export { useTemplateSecrets } from './SecretsContext';