We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
// declarations.d.ts declare module "x" { const df: number; export default df; } // index.ts import df from "x";
Goto-declaration works for df in index.ts, but find-all-references for df in declarations.d.ts only finds the two uses in that file.
df
index.ts
declarations.d.ts