Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ability to add S3 folders / files to package #2171
Ability to add S3 folders / files to package #2171
Changes from 13 commits
d12a115
41d5c9b
1cdffd4
95e1b77
86b81ed
a10b54d
64156a0
936ed94
1f9e6ea
9859a34
df4b08f
e11816b
dfc1348
4659700
c4a8f8b
a421f18
61afa6b
0007860
9901904
55cb899
2719b97
38f8320
dd1ba6a
87649e1
6efcf59
5a387ba
5ab482b
3df7fd8
63f1fb1
b39428a
fd171c9
b3732bf
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe, it's better to stick with one style rule for props types:
type
orinterface
. If we use interfaces, because they are superior then types, then we can use this:or
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well, they are not 100% superior, it's just a recommendation to use interfaces when possible, but it seems to me that
interface A extends SomeType<...> {}
doesnt make much sense, bc it's equivalent to justSomeType<...>
.interface A extends React.PropsWithChildren<{}> { ... }
looks better, but still resembles some workaround and doesnt buy as much compared to when we specify children explicitly:interface A { children?: React.ReactNode, ... }
(extends React.PropsWithChildren<{}>
vschildren?: React.ReactNode
)