mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-04 12:11:29 -05:00
* 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>
15 lines
457 B
Diff
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
|