#1556 Fixing eslint issues
This commit is contained in:
parent
4045fadc40
commit
c6ff859d45
1 changed files with 13 additions and 5 deletions
|
@ -10,7 +10,7 @@ import Page from 'component/page';
|
||||||
import * as icons from 'constants/icons';
|
import * as icons from 'constants/icons';
|
||||||
|
|
||||||
type DeamonSettings = {
|
type DeamonSettings = {
|
||||||
data_dir: string,
|
data_dir: string | any,
|
||||||
};
|
};
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
|
@ -21,12 +21,20 @@ type Props = {
|
||||||
user: any,
|
user: any,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
type VersionInfo = {
|
||||||
|
os_system: string,
|
||||||
|
os_release: string,
|
||||||
|
platform: string,
|
||||||
|
lbrynet_version: string,
|
||||||
|
lbryum_version: string,
|
||||||
|
};
|
||||||
|
|
||||||
type State = {
|
type State = {
|
||||||
versionInfo: any,
|
versionInfo: VersionInfo | any,
|
||||||
lbryId: any,
|
lbryId: any,
|
||||||
uiVersion: any,
|
uiVersion: ?string,
|
||||||
upgradeAvailable: any,
|
upgradeAvailable: ?boolean,
|
||||||
accessTokenHidden: any,
|
accessTokenHidden: ?boolean,
|
||||||
};
|
};
|
||||||
|
|
||||||
class HelpPage extends React.PureComponent<Props, State> {
|
class HelpPage extends React.PureComponent<Props, State> {
|
||||||
|
|
Loading…
Reference in a new issue