Change state type as any

This commit is contained in:
kazukinagata 2020-07-28 11:20:10 +09:00
parent e85f39ebe2
commit 4cbd705da5

View File

@ -207,7 +207,7 @@ export interface SingleLayerStringMap {
export interface GenerateRequireSignInWrapperConfig { export interface GenerateRequireSignInWrapperConfig {
readonly redirectPathIfNotSignedIn: string readonly redirectPathIfNotSignedIn: string
readonly mapStateToProps: (state: object) => {hasVerificationBeenAttempted: boolean, isSignedIn: boolean} readonly mapStateToProps: (state: any) => {hasVerificationBeenAttempted: boolean, isSignedIn: boolean}
} }
// export type RequireSignInWrapper = (PageComponent: ComponentClass) => ComponentClass // export type RequireSignInWrapper = (PageComponent: ComponentClass) => ComponentClass