(target: AssistantOutputTarget, key: string, position: number)
| 90 | let order = 0 |
| 91 | |
| 92 | const queueTarget = (target: AssistantOutputTarget, key: string, position: number) => { |
| 93 | candidates.push({ |
| 94 | key, |
| 95 | position, |
| 96 | order, |
| 97 | target, |
| 98 | }) |
| 99 | order += 1 |
| 100 | } |
| 101 | |
| 102 | for (const match of markdownLinks) { |
| 103 | const title = match.title |
no outgoing calls
no test coverage detected