@@ -19,41 +19,48 @@ 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 < any > ) ,
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 < any > ) ,
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+ /* $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 > ) ,
3138 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
3239 * found when Flow v0.85 was deployed. To see the error, delete this comment
3340 * and run Flow. */
34- BOLD_UNDERLINE : OrderedSet . of ( 'BOLD' , 'UNDERLINE' ) ,
41+ BOLD_UNDERLINE : ( OrderedSet . of ( 'BOLD' , 'UNDERLINE' ) : OrderedSet < any > ) ,
3542 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
3643 * found when Flow v0.85 was deployed. To see the error, delete this comment
3744 * and run Flow. */
38- CODE : OrderedSet . of ( 'CODE' ) ,
45+ CODE : ( OrderedSet . of ( 'CODE' ) : OrderedSet < any > ) ,
3946 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
4047 * found when Flow v0.85 was deployed. To see the error, delete this comment
4148 * and run Flow. */
42- ITALIC : OrderedSet . of ( 'ITALIC' ) ,
49+ ITALIC : ( OrderedSet . of ( 'ITALIC' ) : OrderedSet < any > ) ,
4350 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
4451 * found when Flow v0.85 was deployed. To see the error, delete this comment
4552 * and run Flow. */
46- ITALIC_UNDERLINE : OrderedSet . of ( 'ITALIC' , 'UNDERLINE' ) ,
53+ ITALIC_UNDERLINE : ( OrderedSet . of ( 'ITALIC' , 'UNDERLINE' ) : OrderedSet < any > ) ,
4754 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
4855 * found when Flow v0.85 was deployed. To see the error, delete this comment
4956 * and run Flow. */
50- NONE : OrderedSet ( ) ,
57+ NONE : ( OrderedSet ( ) : OrderedSet < any > ) ,
5158 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
5259 * found when Flow v0.85 was deployed. To see the error, delete this comment
5360 * and run Flow. */
54- STRIKETHROUGH : OrderedSet . of ( 'STRIKETHROUGH' ) ,
61+ STRIKETHROUGH : ( OrderedSet . of ( 'STRIKETHROUGH' ) : OrderedSet < any > ) ,
5562 /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error
5663 * found when Flow v0.85 was deployed. To see the error, delete this comment
5764 * and run Flow. */
58- UNDERLINE : OrderedSet . of ( 'UNDERLINE' ) ,
65+ UNDERLINE : ( OrderedSet . of ( 'UNDERLINE' ) : OrderedSet < any > ) ,
5966} ;
0 commit comments