-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(multiple files): fixes export related termnial warning and u…
…pdates yarn.lock
- Loading branch information
1 parent
2f67e3c
commit b7882fc
Showing
8 changed files
with
33,006 additions
and
23,183 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export * from './Video'; | ||
export { VideoDataType } from './helpers/sendVideoCallNotification'; | ||
export type { VideoDataType } from './helpers/sendVideoCallNotification'; |
Large diffs are not rendered by default.
Oops, something went wrong.
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,15 +1,9 @@ | ||
import { ISpaceBannerProps } from "./SpaceBanner"; | ||
import { ISpaceFeedProps } from "./SpaceFeed"; | ||
import { SpacesUI } from "./SpacesUI"; | ||
import { ISpaceInvitesProps } from "./SpaceInvites"; | ||
import { ISpaceCreateWidgetProps } from "./SpaceCreationWidget"; | ||
import { ISpaceBannerProps } from './SpaceBanner'; | ||
import { ISpaceFeedProps } from './SpaceFeed'; | ||
import { ISpaceInvitesProps } from './SpaceInvites'; | ||
import { ISpaceCreateWidgetProps } from './SpaceCreationWidget'; | ||
|
||
export { | ||
SpacesUI, | ||
ISpaceBannerProps, | ||
ISpaceFeedProps, | ||
ISpaceInvitesProps, | ||
ISpaceCreateWidgetProps | ||
} | ||
export { SpacesUI } from './SpacesUI'; | ||
export type { ISpaceBannerProps, ISpaceFeedProps, ISpaceInvitesProps, ISpaceCreateWidgetProps }; | ||
|
||
export * from './exportedTypes'; |
Large diffs are not rendered by default.
Oops, something went wrong.