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

support for native Record breaks old library import #105

Open
RohanHart opened this issue Jan 12, 2020 · 0 comments
Open

support for native Record breaks old library import #105

RohanHart opened this issue Jan 12, 2020 · 0 comments

Comments

@RohanHart
Copy link

I'm converting an old library which uses it's own Record class. Unfortunately the support for Typescript's native Record turns this:

import { Record } from './record';

into this:

import {
          ([key, value]) => {
    const isInexact = (0, _options.opts)().inexact;
    return `{[key: ${_index.default.node.printType(key)}]: ${_index.default.node.printType(value)}${isInexact ? ", ..." : ""}}`;
  }
        } from './record';

The workaround is to import * as R from './record'; and use R.Record

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant