You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: types/index.d.ts
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,8 @@ declare namespace unified {
14
14
/**
15
15
* Clone current processor
16
16
*
17
-
* @returns New unfrozen processor which is configured to function the same as its ancestor. But when the descendant processor is configured in the future it does not affect the ancestral processor.
17
+
* @returns New unfrozen processor which is configured to function the same as its ancestor.
18
+
* But when the descendant processor is configured in the future it does not affect the ancestral processor.
18
19
*/
19
20
(): Processor<P>
20
21
@@ -76,7 +77,8 @@ declare namespace unified {
76
77
*
77
78
* `Parser` can be a normal function in which case it must return a `Node`: the syntax tree representation of the given file.
78
79
*
79
-
* `Parser` can also be a constructor function (a function with keys in its `prototype`) in which case it’s invoked with `new`. Instances must have a parse method which is invoked without arguments and must return a `Node`.
80
+
* `Parser` can also be a constructor function (a function with keys in its `prototype`) in which case it’s invoked with `new`.
81
+
* Instances must have a parse method which is invoked without arguments and must return a `Node`.
0 commit comments