@@ -19,41 +19,47 @@ module.exports = {
1919 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
2020 * found when Flow v0.85 was deployed. To see the error, delete this comment
2121 * and run Flow. */
22- BOLD : OrderedSet . of ( 'BOLD' ) ,
22+ BOLD : ( OrderedSet . of ( 'BOLD' ) : OrderedSet < $FlowFixMe > ) ,
2323 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
2424 * found when Flow v0.85 was deployed. To see the error, delete this comment
2525 * and run Flow. */
26- BOLD_ITALIC : OrderedSet . of ( 'BOLD' , 'ITALIC' ) ,
26+ BOLD_ITALIC : ( OrderedSet . of ( 'BOLD' , 'ITALIC' ) : OrderedSet < $FlowFixMe > ) ,
2727 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
2828 * found when Flow v0.85 was deployed. To see the error, delete this comment
2929 * and run Flow. */
30- BOLD_ITALIC_UNDERLINE : OrderedSet . of ( 'BOLD' , 'ITALIC' , 'UNDERLINE' ) ,
30+ BOLD_ITALIC_UNDERLINE : ( OrderedSet . of (
31+ 'BOLD' ,
32+ 'ITALIC' ,
33+ 'UNDERLINE' ,
34+ ) : OrderedSet < $FlowFixMe > ) ,
3135 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
3236 * found when Flow v0.85 was deployed. To see the error, delete this comment
3337 * and run Flow. */
34- BOLD_UNDERLINE : OrderedSet . of ( 'BOLD' , 'UNDERLINE' ) ,
38+ BOLD_UNDERLINE : ( OrderedSet . of ( 'BOLD' , 'UNDERLINE' ) : OrderedSet < $FlowFixMe > ) ,
3539 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
3640 * found when Flow v0.85 was deployed. To see the error, delete this comment
3741 * and run Flow. */
38- CODE : OrderedSet . of ( 'CODE' ) ,
42+ CODE : ( OrderedSet . of ( 'CODE' ) : OrderedSet < $FlowFixMe > ) ,
3943 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
4044 * found when Flow v0.85 was deployed. To see the error, delete this comment
4145 * and run Flow. */
42- ITALIC : OrderedSet . of ( 'ITALIC' ) ,
46+ ITALIC : ( OrderedSet . of ( 'ITALIC' ) : OrderedSet < $FlowFixMe > ) ,
4347 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
4448 * found when Flow v0.85 was deployed. To see the error, delete this comment
4549 * and run Flow. */
46- ITALIC_UNDERLINE : OrderedSet . of ( 'ITALIC' , 'UNDERLINE' ) ,
50+ ITALIC_UNDERLINE : ( OrderedSet . of ( 'ITALIC' , 'UNDERLINE' ) : OrderedSet <
51+ $FlowFixMe ,
52+ > ) ,
4753 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
4854 * found when Flow v0.85 was deployed. To see the error, delete this comment
4955 * and run Flow. */
50- NONE : OrderedSet ( ) ,
56+ NONE : ( OrderedSet ( ) : OrderedSet < $FlowFixMe > ) ,
5157 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
5258 * found when Flow v0.85 was deployed. To see the error, delete this comment
5359 * and run Flow. */
54- STRIKETHROUGH : OrderedSet . of ( 'STRIKETHROUGH' ) ,
60+ STRIKETHROUGH : ( OrderedSet . of ( 'STRIKETHROUGH' ) : OrderedSet < $FlowFixMe > ) ,
5561 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
5662 * found when Flow v0.85 was deployed. To see the error, delete this comment
5763 * and run Flow. */
58- UNDERLINE : OrderedSet . of ( 'UNDERLINE' ) ,
64+ UNDERLINE : ( OrderedSet . of ( 'UNDERLINE' ) : OrderedSet < $FlowFixMe > ) ,
5965} ;
0 commit comments