Skip to content
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 error TS2497 on import * as X from 'statsd-client': #10291

Merged

Commits on Aug 9, 2016

  1. Fix error TS2497 on import * as X from 'statsd-client':

    Per microsoft/TypeScript#5073, closed as `By Design` by @mhegazy, we need to
    export a namespace for `import *` to work, else `TS2497`. That clashes with
    the `export = ClassName` pattern unless you also merge in a namespace, e.g.
    with `namespace ClassName {}`.
    garthk committed Aug 9, 2016
    Copy the full SHA
    f7763de View commit details
    Browse the repository at this point in the history