-
Notifications
You must be signed in to change notification settings - Fork 30.3k
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
Convert yet more import *
to import =
#23464
Conversation
5675ff8
to
e54d6d1
Compare
@andy-ms Thank you for submitting this PR! 🔔 @spacejack @andraaspar @isiahmeadows @djpereira @wonbyte @swist @alitaheri @Burgov @wilgert @franjuan @MartynasZilinskas @jacobbaskin @mgroenhoff @shiftkey @j-f1 @stephenlautier @CzBuCHi @cvle @nenadalm @vforv @pawsong @taoqf @Archcry @IceOnFire @bradzacher @janhommes @jcchalte @chbrown @3fd @westy92 @CatGuardian @sgmccli @Zelein @hellochar @rsxdalv @SamVerschueren @mad-mike @MidnightDesign @wake42 @Sayan751 @charrondev @AGBrown @geppy @fredgalvao @spaulg @trubit @TobiasBales @geoffreak @DenisCarriere @MugeSo @bitbankinc @rollymaduk @seansfkelley @tlaziuk @chiubaka @uncovertruth @LKay @tkrotoff @unional @ianks @bobbuehler @secondwtq @rogierschouten @afshin @BehindTheMath @SeanSobey @ssttevee @zivni @alex3165 @xsburg @geirsagberg @renjfk @psnider @lith-light-g @toddself @bastienmoulia @cxcorp @will-ockmore @cyrilschumacher @TonyPythoneer @khoomeister @dmoonfire @timbru31 @dolanmiu @SuperPaintman @evanshortiss @j3ko @dex4er @GiedriusGrabauskas @idchlife @plantain-00 @devrelm @mrkmg @SamVerschueren @danmana @oddeirik @vbortone @scleriot @SWBennett06 @IgelCampus @bsurai @KSDaemon @Codesleuth @aicest @daprahamian - please review this PR in the next few days. Be sure to explicitly select If no reviewer appears after a week, a DefinitelyTyped maintainer will review the PR instead. |
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.
Approving the PouchDB changes, at least.
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.
Approving parent-package-json
A definition author has approved this PR ⭐️. A maintainer will merge this PR shortly. If it shouldn't be merged yet, please leave a comment saying so and we'll wait. Thank you for your contribution to DefinitelyTyped! |
import * as m from 'mithril'; | ||
import * as stream from 'mithril/stream'; | ||
import m = require('mithril'); | ||
import stream = require('mithril/stream'); |
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.
@spacejack We really should convert Mithril's value-level exports to just be default exports, so we remain ES6-compatible. Yes, it's breaking, but we're going to have to do it regardless. Just a note for later.
Sequel to #23461