-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Enforce some naming conventions #4813
Conversation
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
a96005b
to
1bcdf03
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
…over type - Also export all prop types Signed-off-by: Sebastian Malton <sebastian@malton.name>
059a56c
to
a8c5979
Compare
Conflicts have been resolved. A maintainer will review the pull request shortly. |
tabId: TabId; | ||
submit?: () => Promise<ReactNode | string | void>; | ||
} | ||
|
||
interface OptionalProps { | ||
export interface OptionalProps { |
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.
export interface OptionalProps { | |
export interface InfoPanelOptionalProps { |
?
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.
I'll do that in a follow up PR.
@@ -32,7 +32,7 @@ enum columnId { | |||
} | |||
|
|||
@observer | |||
export class CrdList extends React.Component { | |||
export class CustomResourceDefinitions extends React.Component { |
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.
is this a breaking change?
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.
No, because it is not exported
Signed-off-by: DmitriyNoa <dmytro.zharkov@gmail.com>
interface
declarations overtype
for object types.