@docusaurus/module-type-aliases 0.0.0-4183 → 0.0.0-4191

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 +2 -2
  2. package/src/index.d.ts +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/module-type-aliases",
3
- "version": "0.0.0-4183",
3
+ "version": "0.0.0-4191",
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": "35b5777f9c0ddd08fc2f6912bb95667c20b620da"
21
+ "gitHead": "1167674fef3ac565a20faeb41f11180ed80ffd0d"
22
22
  }
package/src/index.d.ts CHANGED
@@ -22,7 +22,7 @@ declare module '@generated/site-metadata' {
22
22
  import type {DocusaurusSiteMetadata} from '@docusaurus/types';
23
23
 
24
24
  const siteMetadata: DocusaurusSiteMetadata;
25
- export default siteMetadata;
25
+ export = siteMetadata;
26
26
  }
27
27
 
28
28
  declare module '@generated/registry' {
@@ -48,13 +48,13 @@ declare module '@generated/routes' {
48
48
 
49
49
  declare module '@generated/routesChunkNames' {
50
50
  const routesChunkNames: Record<string, Record<string, string>>;
51
- export default routesChunkNames;
51
+ export = routesChunkNames;
52
52
  }
53
53
 
54
54
  declare module '@generated/globalData' {
55
55
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
56
56
  const globalData: Record<string, any>;
57
- export default globalData;
57
+ export = globalData;
58
58
  }
59
59
 
60
60
  declare module '@generated/i18n' {
@@ -64,12 +64,12 @@ declare module '@generated/i18n' {
64
64
  currentLocale: string;
65
65
  localeConfigs: Record<string, {label: string; direction: string}>;
66
66
  };
67
- export default i18n;
67
+ export = i18n;
68
68
  }
69
69
 
70
70
  declare module '@generated/codeTranslations' {
71
71
  const codeTranslations: Record<string, string>;
72
- export default codeTranslations;
72
+ export = codeTranslations;
73
73
  }
74
74
 
75
75
  declare module '@theme-original/*';