test02/node_modules/@vuepress/theme-default/lib/client/utils/resolveEditLink.d.ts
罗佳鸿 6aa1ebe342
Some checks are pending
部署文档 / deploy-gh-pages (push) Waiting to run
first commit
2024-08-13 10:11:19 +08:00

10 lines
401 B
TypeScript

import type { RepoType } from './resolveRepoType.js';
export declare const editLinkPatterns: Record<Exclude<RepoType, null>, string>;
export declare const resolveEditLink: ({ docsRepo, docsBranch, docsDir, filePathRelative, editLinkPattern, }: {
docsRepo: string;
docsBranch: string;
docsDir: string;
filePathRelative: string | null;
editLinkPattern?: string;
}) => string | null;