@docusaurus/module-type-aliases 0.0.0-4194 → 0.0.0-4203
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 +2 -2
- package/src/index.d.ts +8 -0
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-4203",
|
|
4
4
|
"description": "Docusaurus module type aliases.",
|
|
5
5
|
"types": "./src/index.d.ts",
|
|
6
6
|
"publishConfig": {
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"@types/react-router-dom": "*"
|
|
19
19
|
},
|
|
20
20
|
"license": "MIT",
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "c593f92915e118d87c10015d5db2c42eda4b5ef3"
|
|
22
22
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -319,6 +319,14 @@ declare module '@docusaurus/useGlobalData' {
|
|
|
319
319
|
export default useGlobalData;
|
|
320
320
|
}
|
|
321
321
|
|
|
322
|
+
declare module '*.svg' {
|
|
323
|
+
import type {ComponentType, SVGProps} from 'react';
|
|
324
|
+
|
|
325
|
+
const ReactComponent: ComponentType<SVGProps<SVGSVGElement>>;
|
|
326
|
+
|
|
327
|
+
export default ReactComponent;
|
|
328
|
+
}
|
|
329
|
+
|
|
322
330
|
declare module '*.module.css' {
|
|
323
331
|
const classes: {readonly [key: string]: string};
|
|
324
332
|
export default classes;
|