Skip to content

Commit b4b6f53

Browse files
committed
Fix wrng type exports
1 parent 45f5bbe commit b4b6f53

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/ra-ui-materialui/src/input/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ export * from './TranslatableInputsTab';
3737
*/
3838
export {
3939
useSupportCreateSuggestion,
40-
SupportCreateSuggestionOptions,
41-
UseSupportCreateValue,
40+
type SupportCreateSuggestionOptions,
41+
type UseSupportCreateValue,
4242
useCreateSuggestionContext,
43-
OnCreateHandler,
43+
type OnCreateHandler,
4444
} from 'ra-core';

packages/ra-ui-materialui/src/list/filter/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export * from './SavedQueryFilterListItem';
2020
export {
2121
FilterContext,
2222
useSavedQueries,
23-
SavedQuery,
23+
type SavedQuery,
2424
extractValidSavedQueries,
2525
areValidSavedQueries,
2626
isValidSavedQuery,

0 commit comments

Comments
 (0)