@docusaurus/module-type-aliases 0.0.0-5769 → 0.0.0-5771
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 +3 -1
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-5771",
|
|
4
4
|
"description": "Docusaurus module type aliases.",
|
|
5
5
|
"types": "./src/index.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@docusaurus/react-loadable": "5.5.2",
|
|
16
|
-
"@docusaurus/types": "0.0.0-
|
|
16
|
+
"@docusaurus/types": "0.0.0-5771",
|
|
17
17
|
"@types/history": "^4.7.11",
|
|
18
18
|
"@types/react": "*",
|
|
19
19
|
"@types/react-router-config": "*",
|
|
@@ -26,5 +26,5 @@
|
|
|
26
26
|
"react-dom": "*"
|
|
27
27
|
},
|
|
28
28
|
"license": "MIT",
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "727b7099ca5676f659b6fc2e239214953fd2f9c8"
|
|
30
30
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -356,7 +356,9 @@ declare module '@docusaurus/useGlobalData' {
|
|
|
356
356
|
declare module '*.svg' {
|
|
357
357
|
import type {ComponentType, SVGProps} from 'react';
|
|
358
358
|
|
|
359
|
-
const ReactComponent: ComponentType<
|
|
359
|
+
const ReactComponent: ComponentType<
|
|
360
|
+
SVGProps<SVGSVGElement> & {title?: string}
|
|
361
|
+
>;
|
|
360
362
|
|
|
361
363
|
export default ReactComponent;
|
|
362
364
|
}
|