mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-30 05:52:50 +00:00
Some checks are pending
Argos CI / take-screenshots (push) Waiting to run
Build Hash Router / Build Hash Router (push) Waiting to run
Canary Release / Publish Canary (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
Continuous Releases / Continuous Releases (push) Waiting to run
E2E Tests / E2E — Yarn v1 (18.0) (push) Waiting to run
E2E Tests / E2E — Yarn v1 (20) (push) Waiting to run
E2E Tests / E2E — Yarn v1 (22) (push) Waiting to run
E2E Tests / E2E — Yarn Berry (node-modules, -s) (push) Waiting to run
E2E Tests / E2E — Yarn Berry (node-modules, -st) (push) Waiting to run
E2E Tests / E2E — Yarn Berry (pnp, -s) (push) Waiting to run
E2E Tests / E2E — Yarn Berry (pnp, -st) (push) Waiting to run
E2E Tests / E2E — npm (push) Waiting to run
E2E Tests / E2E — pnpm (push) Waiting to run
108 lines
2.9 KiB
TypeScript
108 lines
2.9 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.
|
|
*/
|
|
|
|
/// <reference types="@docusaurus/theme-classic" />
|
|
/// <reference types="@docusaurus/module-type-aliases" />
|
|
|
|
declare module '@docusaurus/theme-live-codeblock' {
|
|
export type ThemeConfig = {
|
|
liveCodeBlock: {
|
|
playgroundPosition: 'top' | 'bottom';
|
|
};
|
|
};
|
|
}
|
|
|
|
declare module '@theme/LiveCodeBlock' {
|
|
import type {Props as BaseProps} from '@theme/CodeBlock';
|
|
|
|
export interface Props extends BaseProps {}
|
|
|
|
export default function LiveCodeBlock(props: Props): ReactNode;
|
|
}
|
|
|
|
declare module '@theme/Playground' {
|
|
import type {ReactNode} from 'react';
|
|
import type {Props as BaseProps} from '@theme/CodeBlock';
|
|
import type {LiveProvider} from 'react-live';
|
|
|
|
type CodeBlockProps = Omit<BaseProps, 'className' | 'language' | 'title'>;
|
|
type LiveProviderProps = React.ComponentProps<typeof LiveProvider>;
|
|
|
|
export interface Props extends CodeBlockProps, LiveProviderProps {
|
|
// Allow empty live playgrounds
|
|
children?: string;
|
|
}
|
|
export default function Playground(props: LiveProviderProps): ReactNode;
|
|
}
|
|
|
|
declare module '@theme/Playground/Provider' {
|
|
import type {ReactNode} from 'react';
|
|
import type {Props as PlaygroundProps} from '@theme/Playground';
|
|
|
|
export interface Props extends Omit<PlaygroundProps, 'children'> {
|
|
code: string | undefined;
|
|
children: ReactNode;
|
|
}
|
|
|
|
export default function PlaygroundProvider(props: Props): ReactNode;
|
|
}
|
|
|
|
declare module '@theme/Playground/Container' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
export interface Props {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export default function PlaygroundContainer(props: Props): ReactNode;
|
|
}
|
|
|
|
declare module '@theme/Playground/Layout' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
export interface Props {}
|
|
|
|
export default function PlaygroundLayout(props: Props): ReactNode;
|
|
}
|
|
|
|
declare module '@theme/Playground/Preview' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
export interface Props {}
|
|
|
|
export default function PlaygroundPreview(props: Props): ReactNode;
|
|
}
|
|
|
|
declare module '@theme/Playground/Editor' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
export interface Props {}
|
|
|
|
export default function PlaygroundEditor(props: Props): ReactNode;
|
|
}
|
|
|
|
declare module '@theme/Playground/Header' {
|
|
import type {ReactNode} from 'react';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
export interface Props {}
|
|
|
|
export default function PlaygroundHeader(props: Props): ReactNode;
|
|
}
|
|
|
|
declare module '@theme/ReactLiveScope' {
|
|
type Scope = {
|
|
[key: string]: unknown;
|
|
};
|
|
|
|
const ReactLiveScope: Scope;
|
|
export default ReactLiveScope;
|
|
}
|