Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions snapshots/input/syntax/src/conflicting-const-interface.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const ConflictingConst = 42
export interface ConflictingConst {}
9 changes: 9 additions & 0 deletions snapshots/output/syntax/src/conflicting-const-interface.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export const ConflictingConst = 42
// definition syntax 1.0.0 src/`conflicting-const-interface.ts`/
//documentation ```ts\nmodule "conflicting-const-interface.ts"\n```
// ^^^^^^^^^^^^^^^^ definition syntax 1.0.0 src/`conflicting-const-interface.ts`/ConflictingConst.
// documentation ```ts\ninterface ConflictingConst\n```
export interface ConflictingConst {}
// ^^^^^^^^^^^^^^^^ definition syntax 1.0.0 src/`conflicting-const-interface.ts`/ConflictingConst.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The expected behavior

Suggested change
// ^^^^^^^^^^^^^^^^ definition syntax 1.0.0 src/`conflicting-const-interface.ts`/ConflictingConst.
// ^^^^^^^^^^^^^^^^ definition syntax 1.0.0 src/`conflicting-const-interface.ts`/ConflictingConst#

// documentation ```ts\ninterface ConflictingConst\n```