test/node_modules/@vuepress/plugin-seo/lib/node/utils/getLinks.d.ts
2024-08-13 09:27:52 +08:00

9 lines
405 B
TypeScript

import type { App } from 'vuepress/core';
import type { ExtendPage } from '../../typings/index.js';
import type { SeoPluginOptions } from '../options.js';
export declare const getCanonicalLink: (page: ExtendPage, options: SeoPluginOptions) => string | null;
export declare const getAlternateLinks: (app: App, page: ExtendPage, { hostname }: SeoPluginOptions) => {
lang: string;
path: string;
}[];