diff options
Diffstat (limited to 'server/sonar-web/src/main/js/app/components/extensions/Extension.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/app/components/extensions/Extension.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/app/components/extensions/Extension.tsx b/server/sonar-web/src/main/js/app/components/extensions/Extension.tsx index 8d4e5dea4ea..8d82d94ba3d 100644 --- a/server/sonar-web/src/main/js/app/components/extensions/Extension.tsx +++ b/server/sonar-web/src/main/js/app/components/extensions/Extension.tsx @@ -28,15 +28,16 @@ import { getBaseUrl } from '../../../helpers/system'; import { addGlobalErrorMessage } from '../../../store/globalMessages'; import { getCurrentUser, Store } from '../../../store/rootReducer'; import { ExtensionStartMethod } from '../../../types/extension'; +import { CurrentUser, Dict, Extension as TypeExtension } from '../../../types/types'; import * as theme from '../../theme'; import getStore from '../../utils/getStore'; interface Props extends WrappedComponentProps { - currentUser: T.CurrentUser; - extension: T.Extension; + currentUser: CurrentUser; + extension: TypeExtension; location: Location; onFail: (message: string) => void; - options?: T.Dict<any>; + options?: Dict<any>; router: Router; } |