@docusaurus/module-type-aliases 0.0.0-4873 → 0.0.0-4878
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 +1 -3
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-4878",
|
|
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-4878",
|
|
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": "186f6b50623681da063421e72dd69726a8d78f9e"
|
|
27
27
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -152,9 +152,7 @@ declare module '@docusaurus/Link' {
|
|
|
152
152
|
readonly href?: string;
|
|
153
153
|
readonly autoAddBaseUrl?: boolean;
|
|
154
154
|
|
|
155
|
-
/**
|
|
156
|
-
* escape hatch in case broken links check is annoying for a specific link
|
|
157
|
-
*/
|
|
155
|
+
/** Escape hatch in case broken links check doesn't make sense. */
|
|
158
156
|
readonly 'data-noBrokenLinkCheck'?: boolean;
|
|
159
157
|
};
|
|
160
158
|
export default function Link(props: Props): JSX.Element;
|