MCPcopy Create free account
hub / github.com/Effect-TS/effect / unresolvedSeeTag

Function unresolvedSeeTag

packages/tools/jsdocs/src/Jsdocs.ts:1977–1985  ·  view source on GitHub ↗
(tag: ParsedSeeTag)

Source from the content-addressed store, hash-verified

1975}
1976
1977function unresolvedSeeTag(tag: ParsedSeeTag): JSDocApiSeeTag {
1978 return {
1979 text: renderInlineLinks(tag.text),
1980 links: tag.links.map((link) => ({
1981 ...link,
1982 resolution: { _tag: "Unresolved", reason: "not-found", candidates: [] }
1983 }))
1984 }
1985}
1986
1987function unresolvedSee(tags: ReadonlyArray<ParsedSeeTag>): ReadonlyArray<JSDocApiSeeTag> {
1988 return tags.map(unresolvedSeeTag)

Callers

nothing calls this directly

Calls 2

renderInlineLinksFunction · 0.85
mapMethod · 0.45

Tested by

no test coverage detected