@docusaurus/module-type-aliases 0.0.0-4727 → 0.0.0-4728

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-4727",
3
+ "version": "0.0.0-4728",
4
4
  "description": "Docusaurus module type aliases.",
5
5
  "types": "./src/index.d.ts",
6
6
  "publishConfig": {
@@ -12,7 +12,7 @@
12
12
  "directory": "packages/docusaurus-module-type-aliases"
13
13
  },
14
14
  "dependencies": {
15
- "@docusaurus/types": "0.0.0-4727",
15
+ "@docusaurus/types": "0.0.0-4728",
16
16
  "@types/react": "*",
17
17
  "@types/react-router-config": "*",
18
18
  "@types/react-router-dom": "*",
@@ -23,5 +23,5 @@
23
23
  "react-dom": "*"
24
24
  },
25
25
  "license": "MIT",
26
- "gitHead": "967bfff81002933a1c68980300233e0320398e04"
26
+ "gitHead": "517f5b73eaacc1002a973074567a321b469868fe"
27
27
  }
package/src/index.d.ts CHANGED
@@ -154,7 +154,9 @@ declare module '@docusaurus/Link' {
154
154
  readonly href?: string;
155
155
  readonly autoAddBaseUrl?: boolean;
156
156
 
157
- // escape hatch in case broken links check is annoying for a specific link
157
+ /**
158
+ * escape hatch in case broken links check is annoying for a specific link
159
+ */
158
160
  readonly 'data-noBrokenLinkCheck'?: boolean;
159
161
  };
160
162
  export default function Link(props: Props): JSX.Element;