MCPcopy
hub / github.com/massCodeIO/massCode / InternalLink

Interface InternalLink

src/shared/notes/internalLinks.ts:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1export type InternalLinkType = 'snippet' | 'note' | 'http-request'
2
3export 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
13export interface InternalLinkMatch extends InternalLink {
14 from: number

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected