|
25 | 25 |
|
26 | 26 | /**
|
27 | 27 | * @typedef Context
|
28 |
| - * @property {string[]} stack |
| 28 | + * @property {Array<string>} stack |
29 | 29 | * Stack of labels.
|
30 |
| - * @property {number[]} indexStack |
| 30 | + * @property {Array<number>} indexStack |
31 | 31 | * Positions of children in their parents.
|
32 | 32 | * @property {Enter} enter
|
33 | 33 | * @property {Options} options
|
34 |
| - * @property {Array.<Unsafe>} unsafe |
35 |
| - * @property {Array.<Join>} join |
| 34 | + * @property {Array<Unsafe>} unsafe |
| 35 | + * @property {Array<Join>} join |
36 | 36 | * @property {Handle} handle
|
37 | 37 | * @property {Handlers} handlers
|
38 | 38 | * @property {string|undefined} bulletCurrent
|
|
66 | 66 | /**
|
67 | 67 | * @typedef Unsafe
|
68 | 68 | * @property {string} character
|
69 |
| - * @property {string|Array.<string>} [inConstruct] |
70 |
| - * @property {string|Array.<string>} [notInConstruct] |
| 69 | + * @property {string|Array<string>} [inConstruct] |
| 70 | + * @property {string|Array<string>} [notInConstruct] |
71 | 71 | * @property {string} [after]
|
72 | 72 | * @property {string} [before]
|
73 | 73 | * @property {boolean} [atBreak]
|
|
95 | 95 | * @property {boolean} [setext]
|
96 | 96 | * @property {'_'|'*'} [strong]
|
97 | 97 | * @property {boolean} [tightDefinitions]
|
98 |
| - * @property {Array.<Options>} [extensions] |
| 98 | + * @property {Array<Options>} [extensions] |
99 | 99 | * @property {Handlers} [handlers]
|
100 |
| - * @property {Array.<Join>} [join] |
101 |
| - * @property {Array.<Unsafe>} [unsafe] |
| 100 | + * @property {Array<Join>} [join] |
| 101 | + * @property {Array<Unsafe>} [unsafe] |
102 | 102 | */
|
103 | 103 |
|
104 | 104 | export {}
|
0 commit comments