| 4 | import {DocumentationIndexEntry} from "../../src/resources/documentation/getDocumentation.js"; |
| 5 | |
| 6 | export interface DocumentationEntry { |
| 7 | title: string; |
| 8 | text: string; |
| 9 | uri: string; |
| 10 | shortIdentifier: string; |
| 11 | identifier: string; |
| 12 | } |
| 13 | |
| 14 | export default class Documentation { |
| 15 | private identifierIndex: Map<string, DocumentationIndexEntry>; |
nothing calls this directly
no outgoing calls
no test coverage detected