| 7 | import { versions, current } from "consts"; |
| 8 | |
| 9 | export interface NavPartProps { |
| 10 | title: string; |
| 11 | link?: string; |
| 12 | basePath: string; |
| 13 | links?: DocLink[]; |
| 14 | autoOpen?: boolean; |
| 15 | } |
| 16 | |
| 17 | const trimLink = (str: string) => str.replace(/\/$/, ""); |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected