typescript eslint plugin
Summary: This is required to properly run eslint in Atom/VSCode on TypeScript files Reviewed By: jknoxville Differential Revision: D16201418 fbshipit-source-id: 31da04c2d313e9147e0f868c1af15bf3115e6d6a
This commit is contained in:
committed by
Facebook Github Bot
parent
2dd580f24a
commit
2c7371d264
@@ -64,7 +64,7 @@ type DispatchFromProps = {
|
||||
toggleLeftSidebarVisible: (visible?: boolean) => void,
|
||||
toggleRightSidebarVisible: (visible?: boolean) => void,
|
||||
setActiveSheet: (sheet: ActiveSheet) => void,
|
||||
setFlipperRating: number => void,
|
||||
setFlipperRating: (rating: number) => void,
|
||||
};
|
||||
|
||||
type StateFromProps = {
|
||||
@@ -74,7 +74,7 @@ type StateFromProps = {
|
||||
rightSidebarAvailable: boolean,
|
||||
downloadingImportData: boolean,
|
||||
launcherMsg: LauncherMsg,
|
||||
flipperRating: ?number,
|
||||
flipperRating: number | null,
|
||||
};
|
||||
|
||||
const VersionText = styled(Text)({
|
||||
|
||||
Reference in New Issue
Block a user