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
no-duplicates
Please refer to this issue: eslint/eslint#13182 Descriptions are there.
declare module '*/office.gql' { import { DocumentNode } from 'graphql'; const defaultDocument: DocumentNode; export const AllOffices: DocumentNode; export default defaultDocument; } declare module '*/p-graphql.gql' { import { DocumentNode } from 'graphql'; const defaultDocument: DocumentNode; export const HelloMessage: DocumentNode; export const HelloValue1: DocumentNode; export const HelloValue2: DocumentNode; export const HelloValue3: DocumentNode; export const Hi: DocumentNode; export const HelloAndHi: DocumentNode; export default defaultDocument; }
The text was updated successfully, but these errors were encountered:
Seems like we need to update the rule to treat each declare module in a d.ts file as a separate context.
declare module
Sorry, something went wrong.
duplicate of #1479
This isn't a duplicate; we need to fix the rule to handle declare module.
@ljharb #1479 is about declare module also.
#1479 (comment)
No branches or pull requests
Please refer to this issue: eslint/eslint#13182
Descriptions are there.
The text was updated successfully, but these errors were encountered: