@docusaurus/module-type-aliases 0.0.0-4737 → 0.0.0-4738
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/index.d.ts +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/module-type-aliases",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-4738",
|
|
4
4
|
"description": "Docusaurus module type aliases.",
|
|
5
5
|
"types": "./src/index.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"directory": "packages/docusaurus-module-type-aliases"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@docusaurus/types": "0.0.0-
|
|
15
|
+
"@docusaurus/types": "0.0.0-4738",
|
|
16
16
|
"@types/react": "*",
|
|
17
17
|
"@types/react-router-config": "*",
|
|
18
18
|
"@types/react-router-dom": "*",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"react-dom": "*"
|
|
24
24
|
},
|
|
25
25
|
"license": "MIT",
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "a9c78632ceba2532982c6b12e97de11b055e6c45"
|
|
27
27
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -92,8 +92,6 @@ declare module '@theme/Layout' {
|
|
|
92
92
|
|
|
93
93
|
export interface Props {
|
|
94
94
|
readonly children?: ReactNode;
|
|
95
|
-
readonly title?: string;
|
|
96
|
-
readonly description?: string;
|
|
97
95
|
}
|
|
98
96
|
export default function Layout(props: Props): JSX.Element;
|
|
99
97
|
}
|
|
@@ -117,6 +115,10 @@ declare module '@theme/Root' {
|
|
|
117
115
|
export default function Root({children}: Props): JSX.Element;
|
|
118
116
|
}
|
|
119
117
|
|
|
118
|
+
declare module '@theme/SiteMetadata' {
|
|
119
|
+
export default function SiteMetadata(): JSX.Element;
|
|
120
|
+
}
|
|
121
|
+
|
|
120
122
|
declare module '@docusaurus/constants' {
|
|
121
123
|
export const DEFAULT_PLUGIN_ID: 'default';
|
|
122
124
|
}
|