mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-04 20:02:54 +02:00
refactor: remove a lot of implicit anys (#7468)
This commit is contained in:
parent
0c8e57de67
commit
3666a2ede5
23 changed files with 148 additions and 163 deletions
12
packages/docusaurus-migrate/src/deps.d.ts
vendored
12
packages/docusaurus-migrate/src/deps.d.ts
vendored
|
@ -5,6 +5,14 @@
|
|||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
declare module '@mapbox/hast-util-to-jsx';
|
||||
declare module '@mapbox/hast-util-to-jsx' {
|
||||
import type {Node} from 'unist';
|
||||
|
||||
declare module 'hast-util-to-string';
|
||||
export default function toJsx(node: Node): string;
|
||||
}
|
||||
|
||||
declare module 'hast-util-to-string' {
|
||||
import type {Node} from 'unist';
|
||||
|
||||
export default function toString(node: Node): string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue