We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I just got bit by the same issue mentioned here.
I'm using DefinitelyTyped with the github-electron* definitions, and github-electron-main.d.ts and github-electron-renderer.d.ts both declare an ipc module and export something, causing the errors:
github-electron*
ipc
typings/github-electron/github-electron-main.d.ts(229,2): error TS2300: Duplicate identifier 'export='. typings/github-electron/github-electron-renderer.d.ts(99,2): error TS2300: Duplicate identifier 'export='.
Is there a way to prevent tsc from loading these definitions, so I can just /// <reference /> it in the proper source files?
tsc
/// <reference />
The text was updated successfully, but these errors were encountered:
Should be fixed with DefinitelyTyped/DefinitelyTyped#6663
Sorry, something went wrong.
Thanks @Patman64 for the update. looks a DT issue then.
No branches or pull requests
I just got bit by the same issue mentioned here.
I'm using DefinitelyTyped with the
github-electron*
definitions, and github-electron-main.d.ts and github-electron-renderer.d.ts both declare anipc
module and export something, causing the errors:Is there a way to prevent
tsc
from loading these definitions, so I can just/// <reference />
it in the proper source files?The text was updated successfully, but these errors were encountered: