test02/node_modules/@vuepress/plugin-seo/lib/node/appendHead.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
564 B
TypeScript

import type { HeadConfig } from 'vuepress/core';
import type { ArticleSchema, BlogPostingSchema, SeoContent, WebPageSchema } from '../typings/index.js';
export declare const addOGP: (head: HeadConfig[], content: SeoContent) => void;
export declare const appendJSONLD: (head: HeadConfig[], content: ArticleSchema | BlogPostingSchema | WebPageSchema) => void;
export declare const appendCanonical: (head: HeadConfig[], url?: string | null) => void;
export declare const appendAlternate: (head: HeadConfig[], urls: {
lang: string;
path: string;
}[]) => void;