Chore: noImplicitAny Sub 500 errors (#18287)

This commit is contained in:
Tobias Skarhed
2019-07-30 15:49:32 +02:00
committed by GitHub
parent 7949329636
commit 7891233812
74 changed files with 351 additions and 254 deletions

View File

@@ -77,7 +77,7 @@ export class LogsContainer extends PureComponent<LogsContainerProps> {
});
};
getLogRowContext = async (row: LogRowModel, options?: any) => {
getLogRowContext = async (row: LogRowModel, options?: any): Promise<any> => {
const { datasourceInstance } = this.props;
if (datasourceInstance) {
@@ -142,8 +142,9 @@ export class LogsContainer extends PureComponent<LogsContainerProps> {
}
}
function mapStateToProps(state: StoreState, { exploreId }) {
function mapStateToProps(state: StoreState, { exploreId }: { exploreId: string }) {
const explore = state.explore;
// @ts-ignore
const item: ExploreItemState = explore[exploreId];
const {
logsHighlighterExpressions,