UNPKG

@openinc/parse-server-opendash

Version:
14 lines (13 loc) 471 B
import { _User, Tenant } from "../../../types"; import { DocumentationFile } from "../types"; /** * Service to resolve and upload linked local files/images in documentation content */ export declare class LinkResolver { private gitHubClient; private files; constructor(gitHubToken: string, files?: DocumentationFile[]); resolveLinks(user?: _User, tenant?: Tenant): Promise<void>; private scanLinksWithPositions; private replaceLinksInContent; }