#1556 Fixing eslint issues

This commit is contained in:
Amit Nandan P 2018-06-09 18:19:04 -05:00
parent 4045fadc40
commit c6ff859d45

View file

@ -10,7 +10,7 @@ import Page from 'component/page';
import * as icons from 'constants/icons';
type DeamonSettings = {
data_dir: string,
data_dir: string | any,
};
type Props = {
@ -21,12 +21,20 @@ type Props = {
user: any,
};
type VersionInfo = {
os_system: string,
os_release: string,
platform: string,
lbrynet_version: string,
lbryum_version: string,
};
type State = {
versionInfo: any,
versionInfo: VersionInfo | any,
lbryId: any,
uiVersion: any,
upgradeAvailable: any,
accessTokenHidden: any,
uiVersion: ?string,
upgradeAvailable: ?boolean,
accessTokenHidden: ?boolean,
};
class HelpPage extends React.PureComponent<Props, State> {