@@ -19,48 +19,41 @@ 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' ) : OrderedSet < any > ) ,
22+ BOLD : OrderedSet . of ( 'BOLD' ) ,
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' ) : OrderedSet < any > ) ,
26+ BOLD_ITALIC : OrderedSet . of ( 'BOLD' , 'ITALIC' ) ,
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 (
31- 'BOLD' ,
32- 'ITALIC' ,
33- 'UNDERLINE' ,
34- /* $FlowFixMe(>=0.86.0 site=www) This comment suppresses an error found when
35- * automatically adding a type annotation with the codemod Komodo/Annotate_
36- * exports. To see the error delete this comment and run Flow. */
37- ) : OrderedSet < any > ) ,
30+ BOLD_ITALIC_UNDERLINE : OrderedSet . of ( 'BOLD' , 'ITALIC' , 'UNDERLINE' ) ,
3831 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
3932 * found when Flow v0.85 was deployed. To see the error, delete this comment
4033 * and run Flow. */
41- BOLD_UNDERLINE : ( OrderedSet . of ( 'BOLD' , 'UNDERLINE' ) : OrderedSet < any > ) ,
34+ BOLD_UNDERLINE : OrderedSet . of ( 'BOLD' , 'UNDERLINE' ) ,
4235 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
4336 * found when Flow v0.85 was deployed. To see the error, delete this comment
4437 * and run Flow. */
45- CODE : ( OrderedSet . of ( 'CODE' ) : OrderedSet < any > ) ,
38+ CODE : OrderedSet . of ( 'CODE' ) ,
4639 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
4740 * found when Flow v0.85 was deployed. To see the error, delete this comment
4841 * and run Flow. */
49- ITALIC : ( OrderedSet . of ( 'ITALIC' ) : OrderedSet < any > ) ,
42+ ITALIC : OrderedSet . of ( 'ITALIC' ) ,
5043 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
5144 * found when Flow v0.85 was deployed. To see the error, delete this comment
5245 * and run Flow. */
53- ITALIC_UNDERLINE : ( OrderedSet . of ( 'ITALIC' , 'UNDERLINE' ) : OrderedSet < any > ) ,
46+ ITALIC_UNDERLINE : OrderedSet . of ( 'ITALIC' , 'UNDERLINE' ) ,
5447 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
5548 * found when Flow v0.85 was deployed. To see the error, delete this comment
5649 * and run Flow. */
57- NONE : ( OrderedSet ( ) : OrderedSet < any > ) ,
50+ NONE : OrderedSet ( ) ,
5851 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
5952 * found when Flow v0.85 was deployed. To see the error, delete this comment
6053 * and run Flow. */
61- STRIKETHROUGH : ( OrderedSet . of ( 'STRIKETHROUGH' ) : OrderedSet < any > ) ,
54+ STRIKETHROUGH : OrderedSet . of ( 'STRIKETHROUGH' ) ,
6255 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
6356 * found when Flow v0.85 was deployed. To see the error, delete this comment
6457 * and run Flow. */
65- UNDERLINE : ( OrderedSet . of ( 'UNDERLINE' ) : OrderedSet < any > ) ,
58+ UNDERLINE : OrderedSet . of ( 'UNDERLINE' ) ,
6659} ;
0 commit comments