-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
fix: added better types #2213
base: master
Are you sure you want to change the base?
fix: added better types #2213
Conversation
Hi, thanks for your contribution! |
@@ -7,7 +7,10 @@ describe( "/service/authentication/AuthenticationEvents members", () => { | |||
IDENTITY_UPDATED, | |||
AuthenticationEvents, | |||
...others | |||
} = exported as any; // TODO: remove cast after typescript conversion |
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.
@hristoterezov @saghul @bgrozev can you please review this.
Sorry, what are you fixing here? "other" is still unaccounted for. |
only thing exported from import * as exported from "./AuthenticationEvents"; is
can just replace
with |
|
The whole point of that test is to make sure we don't miss any other exports. Maybe I'm missing something... |
i guess this would be a better type then taking into account any unneeded exports? @saghul |
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.
PTAL
@hristoterezov @saghul @bgrozev can you please review this.