9 lines
405 B
TypeScript
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;
|
|
}[];
|