(type: 'issue' | 'pr')
| 8 | import observe from '../helpers/selector-observer.js'; |
| 9 | |
| 10 | function getHash(type: 'issue' | 'pr'): string { |
| 11 | return type === 'issue' ? commentBoxHashIssue : commentBoxHashPr; |
| 12 | } |
| 13 | |
| 14 | function linkify(item: HTMLElement): void { |
| 15 | if (item instanceof HTMLAnchorElement) { |