-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6200 from marmelab/export-actions-props-interfaces
[TypeScript] Fix view action component types aren't exported
- Loading branch information
Showing
6 changed files
with
27 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,30 @@ | ||
import { Create } from './Create'; | ||
import { CreateView } from './CreateView'; | ||
import CreateActions from './CreateActions'; | ||
import { Edit } from './Edit'; | ||
import { EditView } from './EditView'; | ||
import EditActions, { EditActionsProps } from './EditActions'; | ||
import EditGuesser from './EditGuesser'; | ||
import { Show } from './Show'; | ||
import { ShowView } from './ShowView'; | ||
import ShowActions, { ShowActionsProps } from './ShowActions'; | ||
import ShowGuesser from './ShowGuesser'; | ||
import SimpleShowLayout, { SimpleShowLayoutProps } from './SimpleShowLayout'; | ||
|
||
export * from './CreateActions'; | ||
export * from './EditActions'; | ||
export * from './ShowActions'; | ||
export * from './TabbedShowLayout'; | ||
export * from './TabbedShowLayoutTabs'; | ||
export * from './Tab'; | ||
|
||
export { | ||
Create, | ||
CreateView, | ||
CreateActions, | ||
Edit, | ||
EditView, | ||
EditActions, | ||
EditGuesser, | ||
Show, | ||
ShowView, | ||
ShowActions, | ||
ShowGuesser, | ||
SimpleShowLayout, | ||
}; | ||
|
||
export type { EditActionsProps, SimpleShowLayoutProps, ShowActionsProps }; | ||
export type { SimpleShowLayoutProps }; |