| 1 | export type InternalLinkType = 'snippet' | 'note' | 'http-request' |
| 2 | |
| 3 | export interface InternalLink { |
| 4 | alias: string | null |
| 5 | basename: string |
| 6 | legacyTarget: { id: number, type: InternalLinkType } | null |
| 7 | label: string |
| 8 | pathSegments: string[] |
| 9 | raw: string |
| 10 | target: string |
| 11 | } |
| 12 | |
| 13 | export interface InternalLinkMatch extends InternalLink { |
| 14 | from: number |
nothing calls this directly
no outgoing calls
no test coverage detected