UNPKG

docusaurus-theme-frontmatter

Version:

Docusaurus theme plugin to expose front matter through a component hook

35 lines (25 loc) 1.14 kB
// ================================================================= // // Copyright (c) roydukkey. All rights reserved. // // ================================================================= // /* eslint-disable @typescript-eslint/no-type-alias */ declare module '@theme/useFrontMatter' { import type { Props as BlogPostPageProps } from '@theme/BlogPostPage'; import type { Context } from 'react'; import type { Props as DocItemProps } from '@theme/DocItem'; import type { Props as MDXPageProps } from '@theme/MDXPage'; /** * Returns the front matter for the current context. */ export default function <T extends FrontMatter> (): T; /** * The current front matter context. */ export const Context: Context<FrontMatter | null>; export interface FrontMatter { // eslint-disable-next-line @typescript-eslint/no-explicit-any readonly [key: string]: any; } export type DocItemFrontMatter = DocItemProps['content']['frontMatter']; export type BlogPostPageFrontMatter = BlogPostPageProps['content']['frontMatter']; export type MDXPageFrontMatter = MDXPageProps['content']['frontMatter']; }