@docusaurus/module-type-aliases 0.0.0-4347 → 0.0.0-4355

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 +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/module-type-aliases",
3
- "version": "0.0.0-4347",
3
+ "version": "0.0.0-4355",
4
4
  "description": "Docusaurus module type aliases.",
5
5
  "types": "./src/index.d.ts",
6
6
  "publishConfig": {
@@ -12,12 +12,12 @@
12
12
  "directory": "packages/docusaurus-module-type-aliases"
13
13
  },
14
14
  "dependencies": {
15
- "@docusaurus/types": "0.0.0-4347",
15
+ "@docusaurus/types": "0.0.0-4355",
16
16
  "@types/react": "*",
17
17
  "@types/react-helmet": "*",
18
18
  "@types/react-router-config": "*",
19
19
  "@types/react-router-dom": "*"
20
20
  },
21
21
  "license": "MIT",
22
- "gitHead": "12d0a21340f5e0dff5ffe7c3699f3851c8b85ac0"
22
+ "gitHead": "4ad639a600a7aa5415733d798ed53a5a99ac7da0"
23
23
  }
package/src/index.d.ts CHANGED
@@ -120,7 +120,7 @@ declare module '@docusaurus/constants' {
120
120
 
121
121
  declare module '@docusaurus/ErrorBoundary' {
122
122
  import type {ReactNode} from 'react';
123
- import ErrorComponent from '@theme/Error';
123
+ import type ErrorComponent from '@theme/Error';
124
124
 
125
125
  export interface Props {
126
126
  readonly fallback?: typeof ErrorComponent;