- Notifications
You must be signed in to change notification settings - Fork75
Add missing flow utils#201
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Changes from1 commit
ea656658c4db635103e86e0ff65c5454cf9ac7505dFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
- Loading branch information
Uh oh!
There was an error while loading.Please reload this page.
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -13,10 +13,9 @@ declare export var AuthMechanism: { | ||
| +MONGODB_CR: \\"MONGODB-CR\\", | ||
| ... | ||
| }; | ||
| export type AuthMechanismType1 = (typeof AuthMechanism)[$Keys< | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Don't know what is adding parenthesis around | ||
| typeof AuthMechanism | ||
| >]; | ||
| " | ||
| `; | ||
| @@ -26,10 +25,9 @@ exports[`should handle variable & type having same name 1`] = ` | ||
| +MONGODB_CR: \\"MONGODB-CR\\", | ||
| ... | ||
| }; | ||
| export type AuthMechanismType = (typeof AuthMechanism)[$Keys< | ||
| typeof AuthMechanism | ||
| >]; | ||
| " | ||
| `; | ||
| @@ -38,10 +36,9 @@ exports[`should support generic type rename 1`] = ` | ||
| +off: \\"off\\", | ||
| ... | ||
| }>; | ||
| export type ProfilingLevelType = (typeof ProfilingLevel)[$Keys< | ||
| typeof ProfilingLevel | ||
| >]; | ||
| export type Callback<T = any> = (error?: Error, result?: T) => void; | ||
| declare export var callback: Callback<ProfilingLevelType>; | ||
| " | ||