@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.
- package/package.json +3 -3
- 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-
|
|
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-
|
|
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": "
|
|
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
|
-
|
|
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;
|