make FormProps public

Signed-off-by: Paul Cowan <paul.cowan@cutting.scot>
This commit is contained in:
Paul Cowan
2023-01-12 19:10:10 +00:00
parent aeff4e6b5a
commit 2f0c9d9ca0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -15,6 +15,6 @@
*/
export * from './components';
export * from './extensions';
export { type FormProps } from './types';
export type { FormProps } from './types';
export * from './lib';
export * from './hooks';
+1 -1
View File
@@ -18,7 +18,7 @@ import type { FormProps as SchemaFormProps } from '@rjsf/core-v5';
/**
* Any `@rjsf/core` form properties that are publicly exposed to the `NextScaffolderpage`
*
* @alpha
* @public
*/
export type FormProps = Pick<
SchemaFormProps,