(name: string)
| 5 | import type { DenoDocNode } from '#shared/types/deno-doc' |
| 6 | |
| 7 | function loadFixture(name: string): DenoDocNode { |
| 8 | const path = resolve(__dirname, '../../../../fixtures/esm-sh/doc-nodes', name) |
| 9 | return JSON.parse(readFileSync(path, 'utf-8')) |
| 10 | } |
| 11 | |
| 12 | // ============================================================================= |
| 13 | // Issue #1411: wrong `unknown` types in package api docs |