Make type of array of objects compatible with JSDoc and TSDoc.
The best TSDoc type is (Text|HTMLElement)[], but to JSDoc the array is not distributive. JSDoc prefers Text[]|HTMLElement[], but TSDoc rejects that syntax. In the end, both are fine with Array.<Text|HTMLElement>.
Showing
Please register or sign in to comment