-
Notifications
You must be signed in to change notification settings - Fork 272
feat: add functions for parsing formatters from encoding #205
Conversation
Deploy preview for superset-ui ready! Built with commit 24e5a14 |
Codecov Report
@@ Coverage Diff @@
## master #205 +/- ##
==========================================
+ Coverage 99.91% 99.91% +<.01%
==========================================
Files 107 111 +4
Lines 1222 1239 +17
Branches 297 303 +6
==========================================
+ Hits 1221 1238 +17
Partials 1 1
Continue to review full report at Codecov.
|
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.
LGTM
694f02f
to
666bd61
Compare
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.
Still LGTM, just a small typing nit
import { ChannelDef } from '../types/ChannelDef'; | ||
import { isValueDef } from '../typeGuards/ChannelDef'; | ||
|
||
export default function createGetterFromChannelDef(definition: ChannelDef): (x?: any) => any { |
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.
Could this function have more explicit typing? If not, would be good to leave a comment documenting expected input/output
LGTM as well |
Updates the requirements on [@types/storybook__react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/storybook__react) to permit the latest version. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/storybook__react) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
🏆 Enhancements