1056 lines
30 KiB
TypeScript
1056 lines
30 KiB
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
/* eslint-disable @typescript-eslint/triple-slash-reference */
|
|
|
|
/// <reference types="@docusaurus/module-type-aliases" />
|
|
/// <reference types="@docusaurus/plugin-content-docs" />
|
|
/// <reference types="@docusaurus/plugin-content-blog" />
|
|
/// <reference types="@docusaurus/plugin-content-pages" />
|
|
|
|
declare module '@docusaurus/theme-classic' {
|
|
export type Options = {
|
|
customCss?: string | string[];
|
|
};
|
|
}
|
|
|
|
declare module '@theme/Admonition' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
export interface Props {
|
|
readonly children: ReactNode;
|
|
readonly type: 'note' | 'tip' | 'danger' | 'info' | 'caution';
|
|
readonly icon?: ReactNode;
|
|
readonly title?: string;
|
|
}
|
|
export default function Admonition(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/AnnouncementBar' {
|
|
export default function AnnouncementBar(): JSX.Element | null;
|
|
}
|
|
|
|
declare module '@theme/BackToTopButton' {
|
|
export default function BackToTopButton(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/BlogListPaginator' {
|
|
import type {Metadata} from '@theme/BlogListPage';
|
|
|
|
export interface Props {
|
|
readonly metadata: Metadata;
|
|
}
|
|
export default function BlogListPaginator(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/BlogSidebar' {
|
|
import type {BlogSidebar} from '@docusaurus/plugin-content-blog';
|
|
|
|
export interface Props {
|
|
readonly sidebar: BlogSidebar;
|
|
}
|
|
|
|
export default function BlogSidebar(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/BlogPostItem' {
|
|
import type {FrontMatter, Metadata} from '@theme/BlogPostPage';
|
|
import type {Assets} from '@docusaurus/plugin-content-blog';
|
|
|
|
export interface Props {
|
|
readonly frontMatter: FrontMatter;
|
|
readonly assets: Assets;
|
|
readonly metadata: Metadata;
|
|
readonly truncated?: string | boolean;
|
|
readonly isBlogPostPage?: boolean;
|
|
readonly children: JSX.Element;
|
|
}
|
|
|
|
export default function BlogPostItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/BlogPostAuthor' {
|
|
import type {Metadata} from '@theme/BlogPostPage';
|
|
|
|
export interface Props {
|
|
readonly author: Metadata['authors'][number];
|
|
}
|
|
|
|
export default function BlogPostAuthor(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/BlogPostAuthors' {
|
|
import type {Metadata} from '@theme/BlogPostPage';
|
|
import type {Assets} from '@docusaurus/plugin-content-blog';
|
|
|
|
export interface Props {
|
|
readonly authors: Metadata['authors'];
|
|
readonly assets: Assets;
|
|
}
|
|
|
|
export default function BlogPostAuthors(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/BlogPostPaginator' {
|
|
type Item = {readonly title: string; readonly permalink: string};
|
|
|
|
export interface Props {
|
|
readonly nextItem?: Item;
|
|
readonly prevItem?: Item;
|
|
}
|
|
|
|
export default function BlogPostPaginator(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/BlogLayout' {
|
|
import type {ReactNode} from 'react';
|
|
import type {Props as LayoutProps} from '@theme/Layout';
|
|
import type {BlogSidebar} from '@docusaurus/plugin-content-blog';
|
|
|
|
export interface Props extends LayoutProps {
|
|
readonly sidebar?: BlogSidebar;
|
|
readonly toc?: ReactNode;
|
|
}
|
|
|
|
export default function BlogLayout(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/CodeBlock' {
|
|
import type {ReactElement} from 'react';
|
|
|
|
export interface Props {
|
|
readonly children: string | ReactElement;
|
|
readonly className?: string;
|
|
readonly metastring?: string;
|
|
readonly title?: string;
|
|
readonly language?: string;
|
|
}
|
|
|
|
export default function CodeBlock(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/CodeBlock/CopyButton' {
|
|
export interface Props {
|
|
readonly code: string;
|
|
}
|
|
|
|
export default function CopyButton(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocCard' {
|
|
import type {PropSidebarItem} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props {
|
|
readonly item: PropSidebarItem;
|
|
}
|
|
|
|
export default function DocCard(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocCardList' {
|
|
import type {PropSidebarItem} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props {
|
|
readonly items: PropSidebarItem[];
|
|
}
|
|
|
|
export default function DocCardList(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocItemFooter' {
|
|
import type {Props} from '@theme/DocItem';
|
|
|
|
export default function DocItemFooter(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocPaginator' {
|
|
import type {PropNavigation} from '@docusaurus/plugin-content-docs';
|
|
|
|
// May be simpler to provide a {navigation: PropNavigation} prop?
|
|
export interface Props extends PropNavigation {}
|
|
|
|
export default function DocPaginator(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebar' {
|
|
import type {PropSidebarItem} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props {
|
|
readonly path: string;
|
|
readonly sidebar: PropSidebarItem[];
|
|
readonly onCollapse: () => void;
|
|
readonly isHidden: boolean;
|
|
// MobileSecondaryFilter expects Record<string, unknown>
|
|
readonly [key: string]: unknown;
|
|
}
|
|
|
|
export default function DocSidebar(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebar/Mobile' {
|
|
import type {Props as DocSidebarProps} from '@theme/DocSidebar';
|
|
|
|
export interface Props extends DocSidebarProps {}
|
|
|
|
export default function DocSidebarMobile(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebar/Desktop' {
|
|
import type {Props as DocSidebarProps} from '@theme/DocSidebar';
|
|
|
|
export interface Props extends DocSidebarProps {}
|
|
|
|
export default function DocSidebarDesktop(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebar/Desktop/Content' {
|
|
import type {PropSidebarItem} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props {
|
|
readonly className?: string;
|
|
readonly path: string;
|
|
readonly sidebar: PropSidebarItem[];
|
|
}
|
|
|
|
export default function Content(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebar/Desktop/CollapseButton' {
|
|
export interface Props {
|
|
onClick: React.MouseEventHandler;
|
|
}
|
|
|
|
export default function CollapseButton(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebar/Common/Filter' {
|
|
export interface Props {
|
|
readonly className?: string;
|
|
}
|
|
|
|
export default function Filter(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebarItem' {
|
|
import type {PropSidebarItem} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props {
|
|
readonly activePath: string;
|
|
readonly onItemClick?: (item: PropSidebarItem) => void;
|
|
readonly level: number;
|
|
readonly tabIndex?: number;
|
|
readonly item: PropSidebarItem;
|
|
readonly index: number;
|
|
}
|
|
|
|
export default function DocSidebarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebarItem/Link' {
|
|
import type {Props as DocSidebarItemProps} from '@theme/DocSidebarItem';
|
|
|
|
import type {PropSidebarItemLink} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props extends DocSidebarItemProps {
|
|
item: PropSidebarItemLink;
|
|
}
|
|
|
|
export default function DocSidebarItemLink(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebarItem/Html' {
|
|
import type {Props as DocSidebarItemProps} from '@theme/DocSidebarItem';
|
|
import type {PropSidebarItemHtml} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props extends DocSidebarItemProps {
|
|
item: PropSidebarItemHtml;
|
|
}
|
|
|
|
export default function DocSidebarItemHtml(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebarItem/Category' {
|
|
import type {Props as DocSidebarItemProps} from '@theme/DocSidebarItem';
|
|
import type {PropSidebarItemCategory} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props extends DocSidebarItemProps {
|
|
item: PropSidebarItemCategory;
|
|
}
|
|
|
|
export default function DocSidebarItemCategory(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocSidebarItems' {
|
|
import type {Props as DocSidebarItemProps} from '@theme/DocSidebarItem';
|
|
import type {PropSidebarItem} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props extends Omit<DocSidebarItemProps, 'item' | 'index'> {
|
|
readonly items: readonly PropSidebarItem[];
|
|
}
|
|
|
|
export default function DocSidebarItems(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocVersionBanner' {
|
|
export interface Props {
|
|
readonly className?: string;
|
|
}
|
|
|
|
export default function DocVersionBanner(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocVersionBadge' {
|
|
export interface Props {
|
|
readonly className?: string;
|
|
}
|
|
|
|
export default function DocVersionBadge(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/DocVersionSuggestions' {
|
|
export default function DocVersionSuggestions(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/EditThisPage' {
|
|
export interface Props {
|
|
readonly editUrl: string;
|
|
}
|
|
export default function EditThisPage(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/ErrorPageContent' {
|
|
import type ErrorComponent from '@theme/Error';
|
|
|
|
const ErrorPageContent: typeof ErrorComponent;
|
|
export default ErrorPageContent;
|
|
}
|
|
|
|
declare module '@theme/Footer' {
|
|
export default function Footer(): JSX.Element | null;
|
|
}
|
|
|
|
declare module '@theme/Footer/Logo' {
|
|
import type {FooterLogo} from '@docusaurus/theme-common';
|
|
|
|
export interface Props {
|
|
logo: FooterLogo;
|
|
}
|
|
|
|
export default function FooterLogo(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Footer/Copyright' {
|
|
export interface Props {
|
|
copyright: string;
|
|
}
|
|
|
|
export default function FooterCopyright(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Footer/LinkItem' {
|
|
import type {FooterLinkItem} from '@docusaurus/theme-common';
|
|
|
|
export interface Props {
|
|
item: FooterLinkItem;
|
|
}
|
|
|
|
export default function FooterLinkItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Footer/Layout' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
export interface Props {
|
|
style: 'light' | 'dark';
|
|
links: ReactNode;
|
|
logo: ReactNode;
|
|
copyright: ReactNode;
|
|
}
|
|
|
|
export default function FooterLayout(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Footer/Links' {
|
|
import type {Footer} from '@docusaurus/theme-common';
|
|
|
|
export interface Props {
|
|
links: Footer['links'];
|
|
}
|
|
|
|
export default function FooterLinks(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Footer/Links/MultiColumn' {
|
|
import type {MultiColumnFooter} from '@docusaurus/theme-common';
|
|
|
|
export interface Props {
|
|
columns: MultiColumnFooter['links'];
|
|
}
|
|
|
|
export default function FooterLinksMultiColumn(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Footer/Links/Simple' {
|
|
import type {SimpleFooter} from '@docusaurus/theme-common';
|
|
|
|
export interface Props {
|
|
links: SimpleFooter['links'];
|
|
}
|
|
|
|
export default function FooterLinksSimple(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Heading' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
type HeadingType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
|
|
export interface Props extends ComponentProps<HeadingType> {
|
|
as: HeadingType;
|
|
}
|
|
|
|
export default function Heading(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Layout' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
export interface Props {
|
|
readonly children?: ReactNode;
|
|
readonly noFooter?: boolean;
|
|
readonly wrapperClassName?: string;
|
|
|
|
// Not really layout-related, but kept for convenience/retro-compatibility
|
|
readonly title?: string;
|
|
readonly description?: string;
|
|
}
|
|
|
|
export default function Layout(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/LayoutProviders' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
export interface Props {
|
|
readonly children: ReactNode;
|
|
}
|
|
|
|
export default function LayoutProviders(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/SearchMetadata' {
|
|
export interface Props {
|
|
readonly locale?: string;
|
|
readonly version?: string;
|
|
readonly tag?: string;
|
|
}
|
|
|
|
export default function SearchMetadata(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/LastUpdated' {
|
|
export interface Props {
|
|
readonly lastUpdatedAt?: number;
|
|
readonly formattedLastUpdatedAt?: string;
|
|
readonly lastUpdatedBy?: string;
|
|
}
|
|
|
|
export default function LastUpdated(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/SkipToContent' {
|
|
export default function SkipToContent(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents/A' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'a'> {}
|
|
|
|
export default function MDXA(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents/Code' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'code'> {}
|
|
|
|
export default function MDXCode(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents/Details' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'details'> {}
|
|
|
|
export default function MDXDetails(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents/Ul' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'ul'> {}
|
|
|
|
export default function MDXUl(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents/Img' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'img'> {}
|
|
|
|
export default function MDXImg(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents/Head' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'head'> {}
|
|
|
|
export default function MDXHead(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents/Heading' {
|
|
import type {ComponentProps} from 'react';
|
|
import type Heading from '@theme/Heading';
|
|
|
|
export interface Props extends ComponentProps<typeof Heading> {}
|
|
|
|
export default function MDXHeading(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents/Pre' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'pre'> {}
|
|
|
|
export default function MDXPre(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/MDXComponents' {
|
|
import type {ComponentType, ComponentProps} from 'react';
|
|
|
|
import type MDXHead from '@theme/MDXComponents/Head';
|
|
import type MDXCode from '@theme/MDXComponents/Code';
|
|
import type MDXA from '@theme/MDXComponents/A';
|
|
import type MDXPre from '@theme/MDXComponents/Pre';
|
|
import type MDXDetails from '@theme/MDXComponents/Details';
|
|
import type MDXUl from '@theme/MDXComponents/Ul';
|
|
import type MDXImg from '@theme/MDXComponents/Img';
|
|
|
|
export type MDXComponentsObject = {
|
|
readonly head: typeof MDXHead;
|
|
readonly code: typeof MDXCode;
|
|
readonly a: typeof MDXA;
|
|
readonly pre: typeof MDXPre;
|
|
readonly details: typeof MDXDetails;
|
|
readonly ul: typeof MDXUl;
|
|
readonly img: typeof MDXImg;
|
|
readonly h1: (props: ComponentProps<'h1'>) => JSX.Element;
|
|
readonly h2: (props: ComponentProps<'h2'>) => JSX.Element;
|
|
readonly h3: (props: ComponentProps<'h3'>) => JSX.Element;
|
|
readonly h4: (props: ComponentProps<'h4'>) => JSX.Element;
|
|
readonly h5: (props: ComponentProps<'h5'>) => JSX.Element;
|
|
readonly h6: (props: ComponentProps<'h6'>) => JSX.Element;
|
|
} & {[tagName: string]: ComponentType<unknown>};
|
|
|
|
const MDXComponents: MDXComponentsObject;
|
|
export default MDXComponents;
|
|
}
|
|
|
|
declare module '@theme/MDXContent' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
export interface Props {
|
|
readonly children: ReactNode;
|
|
}
|
|
|
|
export default function MDXContent(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar' {
|
|
export default function Navbar(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/ColorModeToggle' {
|
|
export interface Props {
|
|
readonly className?: string;
|
|
}
|
|
|
|
export default function NavbarColorModeToggle(
|
|
props: Props,
|
|
): JSX.Element | null;
|
|
}
|
|
|
|
declare module '@theme/Navbar/Logo' {
|
|
export default function NavbarLogo(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/Content' {
|
|
export default function NavbarContent(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/Layout' {
|
|
export interface Props {
|
|
readonly children: React.ReactNode;
|
|
}
|
|
|
|
export default function NavbarLayout(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/MobileSidebar' {
|
|
export default function NavbarMobileSidebar(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/MobileSidebar/Layout' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
interface Props {
|
|
header: ReactNode;
|
|
primaryMenu: ReactNode;
|
|
secondaryMenu: ReactNode;
|
|
}
|
|
|
|
export default function NavbarMobileSidebarLayout(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/MobileSidebar/Toggle' {
|
|
export default function NavbarMobileSidebarToggle(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/MobileSidebar/PrimaryMenu' {
|
|
export default function NavbarMobileSidebarPrimaryMenu(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/MobileSidebar/SecondaryMenu' {
|
|
export default function NavbarMobileSidebarSecondaryMenu(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Navbar/MobileSidebar/Header' {
|
|
export default function NavbarMobileSidebarHeader(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/DefaultNavbarItem' {
|
|
import type {Props as NavbarNavLinkProps} from '@theme/NavbarItem/NavbarNavLink';
|
|
|
|
export type DesktopOrMobileNavBarItemProps = NavbarNavLinkProps & {
|
|
readonly isDropdownItem?: boolean;
|
|
readonly className?: string;
|
|
readonly position?: 'left' | 'right';
|
|
};
|
|
|
|
export interface Props extends DesktopOrMobileNavBarItemProps {
|
|
readonly mobile?: boolean;
|
|
}
|
|
|
|
export default function DefaultNavbarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/NavbarNavLink' {
|
|
import type {ReactNode} from 'react';
|
|
import type {Props as LinkProps} from '@docusaurus/Link';
|
|
|
|
export interface Props extends LinkProps {
|
|
readonly activeBasePath?: string;
|
|
readonly activeBaseRegex?: string;
|
|
readonly exact?: boolean;
|
|
readonly label?: ReactNode;
|
|
readonly prependBaseUrlToHref?: string;
|
|
}
|
|
|
|
export default function NavbarNavLink(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/DropdownNavbarItem' {
|
|
import type {Props as NavbarNavLinkProps} from '@theme/NavbarItem/NavbarNavLink';
|
|
|
|
import type {LinkLikeNavbarItemProps} from '@theme/NavbarItem';
|
|
|
|
export type DesktopOrMobileNavBarItemProps = NavbarNavLinkProps & {
|
|
readonly position?: 'left' | 'right';
|
|
readonly items: readonly LinkLikeNavbarItemProps[];
|
|
readonly className?: string;
|
|
};
|
|
|
|
export interface Props extends DesktopOrMobileNavBarItemProps {
|
|
readonly mobile?: boolean;
|
|
}
|
|
|
|
export default function DropdownNavbarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/SearchNavbarItem' {
|
|
export interface Props {
|
|
readonly mobile?: boolean;
|
|
}
|
|
|
|
export default function SearchNavbarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/LocaleDropdownNavbarItem' {
|
|
import type {Props as DropdownNavbarItemProps} from '@theme/NavbarItem/DropdownNavbarItem';
|
|
import type {LinkLikeNavbarItemProps} from '@theme/NavbarItem';
|
|
|
|
export interface Props extends DropdownNavbarItemProps {
|
|
readonly dropdownItemsBefore: LinkLikeNavbarItemProps[];
|
|
readonly dropdownItemsAfter: LinkLikeNavbarItemProps[];
|
|
}
|
|
|
|
export default function LocaleDropdownNavbarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/DocsVersionDropdownNavbarItem' {
|
|
import type {Props as DropdownNavbarItemProps} from '@theme/NavbarItem/DropdownNavbarItem';
|
|
import type {LinkLikeNavbarItemProps} from '@theme/NavbarItem';
|
|
|
|
export interface Props extends DropdownNavbarItemProps {
|
|
readonly docsPluginId?: string;
|
|
readonly dropdownActiveClassDisabled?: boolean;
|
|
readonly dropdownItemsBefore: LinkLikeNavbarItemProps[];
|
|
readonly dropdownItemsAfter: LinkLikeNavbarItemProps[];
|
|
}
|
|
|
|
export default function DocsVersionDropdownNavbarItem(
|
|
props: Props,
|
|
): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/DocsVersionNavbarItem' {
|
|
import type {Props as DefaultNavbarItemProps} from '@theme/NavbarItem/DefaultNavbarItem';
|
|
|
|
export interface Props extends DefaultNavbarItemProps {
|
|
readonly docsPluginId?: string;
|
|
}
|
|
|
|
export default function DocsVersionNavbarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/DocNavbarItem' {
|
|
import type {Props as DefaultNavbarItemProps} from '@theme/NavbarItem/DefaultNavbarItem';
|
|
|
|
export interface Props extends DefaultNavbarItemProps {
|
|
readonly docId: string;
|
|
readonly docsPluginId?: string;
|
|
}
|
|
|
|
export default function DocsSidebarNavbarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/DocSidebarNavbarItem' {
|
|
import type {Props as DefaultNavbarItemProps} from '@theme/NavbarItem/DefaultNavbarItem';
|
|
|
|
export interface Props extends DefaultNavbarItemProps {
|
|
readonly sidebarId: string;
|
|
readonly docsPluginId?: string;
|
|
}
|
|
|
|
export default function DocSidebarNavbarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem' {
|
|
import type {ComponentProps} from 'react';
|
|
import type {Props as DefaultNavbarItemProps} from '@theme/NavbarItem/DefaultNavbarItem';
|
|
import type {Props as DocNavbarItemProps} from '@theme/NavbarItem/DocNavbarItem';
|
|
import type {Props as DocSidebarNavbarItemProps} from '@theme/NavbarItem/DocSidebarNavbarItem';
|
|
import type {Props as DocsVersionNavbarItemProps} from '@theme/NavbarItem/DocsVersionNavbarItem';
|
|
import type {Props as DropdownNavbarItemProps} from '@theme/NavbarItem/DropdownNavbarItem';
|
|
import type {Props as DocsVersionDropdownNavbarItemProps} from '@theme/NavbarItem/DocsVersionDropdownNavbarItem';
|
|
import type {Props as LocaleDropdownNavbarItemProps} from '@theme/NavbarItem/LocaleDropdownNavbarItem';
|
|
import type {Props as SearchNavbarItemProps} from '@theme/NavbarItem/SearchNavbarItem';
|
|
|
|
export type LinkLikeNavbarItemProps =
|
|
| ({readonly type?: 'default'} & DefaultNavbarItemProps)
|
|
| ({readonly type: 'doc'} & DocNavbarItemProps)
|
|
| ({readonly type: 'docsVersion'} & DocsVersionNavbarItemProps)
|
|
| ({readonly type: 'docSidebar'} & DocSidebarNavbarItemProps);
|
|
|
|
export type Props = ComponentProps<'a'> & {
|
|
readonly position?: 'left' | 'right';
|
|
} & (
|
|
| LinkLikeNavbarItemProps
|
|
| ({readonly type?: 'dropdown'} & DropdownNavbarItemProps)
|
|
| ({
|
|
readonly type: 'docsVersionDropdown';
|
|
} & DocsVersionDropdownNavbarItemProps)
|
|
| ({readonly type: 'localeDropdown'} & LocaleDropdownNavbarItemProps)
|
|
| ({
|
|
readonly type: 'search';
|
|
} & SearchNavbarItemProps)
|
|
);
|
|
|
|
export type Types = Props['type'];
|
|
|
|
export default function NavbarItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/NavbarItem/utils' {
|
|
export function getInfimaActiveClassName(mobile?: boolean): string;
|
|
}
|
|
|
|
declare module '@theme/PaginatorNavLink' {
|
|
import type {ReactNode} from 'react';
|
|
import type {PropNavigationLink} from '@docusaurus/plugin-content-docs';
|
|
|
|
export interface Props extends Omit<PropNavigationLink, 'title'> {
|
|
readonly title: ReactNode;
|
|
readonly subLabel?: JSX.Element;
|
|
}
|
|
|
|
export default function PaginatorNavLink(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/SearchBar' {
|
|
export default function SearchBar(): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/TabItem' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
export interface Props {
|
|
readonly children: ReactNode;
|
|
readonly value: string;
|
|
readonly default?: boolean;
|
|
readonly label?: string;
|
|
readonly hidden?: boolean;
|
|
readonly className?: string;
|
|
readonly attributes?: {[key: string]: unknown};
|
|
}
|
|
|
|
export default function TabItem(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Tabs' {
|
|
import type {ReactElement} from 'react';
|
|
import type {Props as TabItemProps} from '@theme/TabItem';
|
|
|
|
export interface Props {
|
|
readonly lazy?: boolean;
|
|
readonly block?: boolean;
|
|
readonly children: readonly ReactElement<TabItemProps>[];
|
|
readonly defaultValue?: string | null;
|
|
readonly values?: readonly {
|
|
value: string;
|
|
label?: string;
|
|
attributes?: {[key: string]: unknown};
|
|
}[];
|
|
readonly groupId?: string;
|
|
readonly className?: string;
|
|
}
|
|
|
|
export default function Tabs(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/ThemedImage' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends Omit<ComponentProps<'img'>, 'src'> {
|
|
readonly sources: {
|
|
readonly light: string;
|
|
readonly dark: string;
|
|
};
|
|
}
|
|
|
|
export default function ThemedImage(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Details' {
|
|
import {Details, type DetailsProps} from '@docusaurus/theme-common';
|
|
|
|
export interface Props extends DetailsProps {}
|
|
export default Details;
|
|
}
|
|
|
|
declare module '@theme/TOCItems' {
|
|
import type {TOCItem} from '@docusaurus/types';
|
|
|
|
export interface Props {
|
|
readonly toc: readonly TOCItem[];
|
|
readonly minHeadingLevel?: number;
|
|
readonly maxHeadingLevel?: number;
|
|
readonly className?: string;
|
|
readonly linkClassName?: string | null;
|
|
readonly linkActiveClassName?: string;
|
|
}
|
|
|
|
export default function TOCItems(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/TOC' {
|
|
import type {TOCItem} from '@docusaurus/types';
|
|
|
|
// minHeadingLevel only exists as a per-doc option, and won't have a default
|
|
// set by Joi. See TOC, TOCInline, TOCCollapsible for examples
|
|
export interface Props {
|
|
readonly toc: readonly TOCItem[];
|
|
readonly minHeadingLevel?: number;
|
|
readonly maxHeadingLevel?: number;
|
|
readonly className?: string;
|
|
}
|
|
|
|
export default function TOC(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/TOCInline' {
|
|
import type {TOCItem} from '@docusaurus/types';
|
|
|
|
export interface Props {
|
|
readonly toc: readonly TOCItem[];
|
|
readonly minHeadingLevel?: number;
|
|
readonly maxHeadingLevel?: number;
|
|
}
|
|
|
|
export default function TOCInline(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/TOCCollapsible' {
|
|
import type {TOCItem} from '@docusaurus/types';
|
|
|
|
export interface Props {
|
|
readonly className?: string;
|
|
readonly minHeadingLevel?: number;
|
|
readonly maxHeadingLevel?: number;
|
|
readonly toc: readonly TOCItem[];
|
|
}
|
|
|
|
export default function TOCCollapsible(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/ColorModeToggle' {
|
|
import type {ColorMode} from '@docusaurus/theme-common';
|
|
|
|
export interface Props {
|
|
readonly className?: string;
|
|
readonly value: ColorMode;
|
|
/**
|
|
* The parameter represents the "to-be" value. For example, if currently in
|
|
* dark mode, clicking the button should call `onChange("light")`
|
|
*/
|
|
readonly onChange: (colorMode: ColorMode) => void;
|
|
}
|
|
|
|
export default function ColorModeToggle(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Logo' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'a'> {
|
|
readonly imageClassName?: string;
|
|
readonly titleClassName?: string;
|
|
}
|
|
|
|
export default function Logo(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/IconArrow' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'svg'> {}
|
|
|
|
export default function IconArrow(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/IconDarkMode' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'svg'> {}
|
|
|
|
export default function IconDarkMode(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/IconEdit' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'svg'> {}
|
|
|
|
export default function IconEdit(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/IconLightMode' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'svg'> {}
|
|
|
|
export default function IconLightMode(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/IconMenu' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'svg'> {}
|
|
|
|
export default function IconMenu(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/IconClose' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'svg'> {}
|
|
|
|
export default function IconClose(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/IconLanguage' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'svg'> {}
|
|
|
|
export default function IconLanguage(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/IconExternalLink' {
|
|
import type {ComponentProps} from 'react';
|
|
|
|
export interface Props extends ComponentProps<'svg'> {}
|
|
|
|
export default function IconExternalLink(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/TagsListByLetter' {
|
|
import type {TagsListItem} from '@docusaurus/theme-common';
|
|
|
|
export interface Props {
|
|
readonly tags: readonly TagsListItem[];
|
|
}
|
|
export default function TagsListByLetter(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/TagsListInline' {
|
|
import type {Tag} from '@docusaurus/utils';
|
|
|
|
export interface Props {
|
|
readonly tags: readonly Tag[];
|
|
}
|
|
export default function TagsListInline(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/Tag' {
|
|
import type {TagsListItem} from '@docusaurus/theme-common';
|
|
import type {Optional} from 'utility-types';
|
|
|
|
export interface Props extends Optional<TagsListItem, 'count'> {}
|
|
|
|
export default function Tag(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/TextHighlight' {
|
|
export interface Props {
|
|
readonly text?: string;
|
|
readonly highlight?: string;
|
|
}
|
|
|
|
export default function TextHighlight(props: Props): JSX.Element;
|
|
}
|
|
|
|
declare module '@theme/prism-include-languages' {
|
|
import type * as PrismNamespace from 'prismjs';
|
|
|
|
export default function prismIncludeLanguages(
|
|
PrismObject: typeof PrismNamespace,
|
|
): void;
|
|
}
|