jp.ui.app.toolkit 1.0.78 → 1.0.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Component } from 'react';
|
|
1
|
+
import React, { Component } from 'react';
|
|
2
2
|
import { type Store } from '@reduxjs/toolkit';
|
|
3
3
|
import { type RouteType } from '../types/route.type';
|
|
4
4
|
type BaseApplicationProps = object;
|
|
@@ -10,6 +10,6 @@ export declare abstract class BaseApplication extends Component<BaseApplicationP
|
|
|
10
10
|
componentDidMount(): void;
|
|
11
11
|
componentWillUnmount(): void;
|
|
12
12
|
getRoutes(): Array<RouteType>;
|
|
13
|
-
render():
|
|
13
|
+
render(): React.JSX.Element;
|
|
14
14
|
}
|
|
15
15
|
export {};
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export declare const DailyBonusScreen: () => React.JSX.Element;
|