@docusaurus/module-type-aliases 0.0.0-4816 → 0.0.0-4819
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 +2 -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-4819",
|
|
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-4819",
|
|
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": "f91fc42f44d6a94159c7d777ca5a776b1c623110"
|
|
27
27
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -140,8 +140,9 @@ declare module '@docusaurus/Head' {
|
|
|
140
140
|
|
|
141
141
|
declare module '@docusaurus/Link' {
|
|
142
142
|
import type {CSSProperties, ComponentProps} from 'react';
|
|
143
|
+
import type {NavLinkProps as RRNavLinkProps} from 'react-router-dom';
|
|
143
144
|
|
|
144
|
-
type NavLinkProps = Partial<
|
|
145
|
+
type NavLinkProps = Partial<RRNavLinkProps>;
|
|
145
146
|
export type Props = NavLinkProps &
|
|
146
147
|
ComponentProps<'a'> & {
|
|
147
148
|
readonly className?: string;
|