@docusaurus/module-type-aliases 0.0.0-5769 → 0.0.0-5772

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. 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-5769",
3
+ "version": "0.0.0-5772",
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-5769",
16
+ "@docusaurus/types": "0.0.0-5772",
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": "2a3c275804d5ab8a5b932644888d453a6c10e745"
29
+ "gitHead": "0fa79de3bd15ca85fa0979b0c2722f28e272c73b"
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<SVGProps<SVGSVGElement>>;
359
+ const ReactComponent: ComponentType<
360
+ SVGProps<SVGSVGElement> & {title?: string}
361
+ >;
360
362
 
361
363
  export default ReactComponent;
362
364
  }