Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Summary: This PR fixes the typings for `fontWeight` style prop. Flow file has below typings but they were missing in typescript file. ``` fontWeight?: | 'normal' | 'bold' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | 'ultralight' | 'thin' | 'light' | 'medium' | 'regular' | 'semibold' | 'condensedBold' | 'condensed' | 'heavy' | 'black' | undefined; ``` ## Changelog: [GENERAL] [ADDED] - Added missing typings for fontWeight style prop. Pull Request resolved: #42707 Test Plan: Tested manually. Reviewed By: cortinico Differential Revision: D53191119 Pulled By: NickGerleman fbshipit-source-id: 47c00ea81be5aa217d57be0609cfc7bd4e8e6843
- Loading branch information