|
16 | 16 | const {OrderedSet} = require('immutable'); |
17 | 17 |
|
18 | 18 | module.exports = { |
| 19 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 20 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 21 | + * and run Flow. */ |
19 | 22 | BOLD: OrderedSet.of('BOLD'), |
| 23 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 24 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 25 | + * and run Flow. */ |
20 | 26 | BOLD_ITALIC: OrderedSet.of('BOLD', 'ITALIC'), |
| 27 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 28 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 29 | + * and run Flow. */ |
21 | 30 | BOLD_ITALIC_UNDERLINE: OrderedSet.of('BOLD', 'ITALIC', 'UNDERLINE'), |
| 31 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 32 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 33 | + * and run Flow. */ |
22 | 34 | BOLD_UNDERLINE: OrderedSet.of('BOLD', 'UNDERLINE'), |
| 35 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 36 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 37 | + * and run Flow. */ |
23 | 38 | CODE: OrderedSet.of('CODE'), |
| 39 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 40 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 41 | + * and run Flow. */ |
24 | 42 | ITALIC: OrderedSet.of('ITALIC'), |
| 43 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 44 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 45 | + * and run Flow. */ |
25 | 46 | ITALIC_UNDERLINE: OrderedSet.of('ITALIC', 'UNDERLINE'), |
| 47 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 48 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 49 | + * and run Flow. */ |
26 | 50 | NONE: OrderedSet(), |
| 51 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 52 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 53 | + * and run Flow. */ |
27 | 54 | STRIKETHROUGH: OrderedSet.of('STRIKETHROUGH'), |
| 55 | + /* $FlowFixMe(>=0.85.0 site=www,mobile) This comment suppresses an error |
| 56 | + * found when Flow v0.85 was deployed. To see the error, delete this comment |
| 57 | + * and run Flow. */ |
28 | 58 | UNDERLINE: OrderedSet.of('UNDERLINE'), |
29 | 59 | }; |
0 commit comments