Files
pnpm/__patches__/mdast-util-to-string@2.0.0.patch
Khải 9b4f73caaf chore(scripts): typecheck-only (#8395)
* chore(scripts): typecheck-only

* feat: change all configuration

* feat: include pnpm/ and pnpm/test/

* chore(deps): remove unused dependency

* refactor(typescript-only): use find-packages

* refactor(typescript-only): refactor paths

* fix: typescript-only

* fix: update compile-only

* fix: compile pnpm

* fix: windows

* fix: windows

* chore: meta-updater

* refactor(tsconfig): remove explicit composite

* fix: path in windows

* feat: don't depend on cwd

---------

Co-authored-by: Zoltan Kochan <z@kochan.io>
2024-08-11 08:26:01 +02:00

15 lines
457 B
Diff

diff --git a/types/index.d.ts b/types/index.d.ts
index 39b41dbb8e915bfc0ac76526e679bcaea3c099a8..cf768e14638b6910d3026315d9b51daee50ac397 100644
--- a/types/index.d.ts
+++ b/types/index.d.ts
@@ -1,8 +1,7 @@
// Minimum TypeScript Version: 3.0
-import {Node} from 'unist'
declare namespace mdastToString {}
-declare function mdastToString(node: Node | Node[]): string
+declare function mdastToString(node: any | any[]): string
export = mdastToString