import type { ApiExtractor } from "../ApiExtractor.js"; /** * Resolve a documentation view URL for a module, declaration, or member. * * @param modulePath * @param apiName - Name of a declaration inside the module. * @param memberName - Name of a member inside the declaration. * @param extractor * @experimental */ export function getViewUrl(modulePath: string, apiName: string | undefined, memberName: string | undefined, extractor: Pick): string;