File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/sentry/static/sentry/app/views/settings/projectIncidentRules Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
3
3
import React from 'react' ;
4
4
import styled from 'react-emotion' ;
5
5
6
+ import { Client } from 'app/api' ;
6
7
import { Config , EventsStatsData , Organization , Project } from 'app/types' ;
7
8
import { PanelAlert } from 'app/components/panels' ;
8
9
import { addErrorMessage } from 'app/actionCreators/indicator' ;
@@ -27,7 +28,7 @@ import {IncidentRule} from './types';
27
28
import IncidentRulesChart from './chart' ;
28
29
29
30
type Props = {
30
- api : any ;
31
+ api : Client ;
31
32
config : Config ;
32
33
data : EventsStatsData ;
33
34
organization : Organization ;
@@ -404,7 +405,7 @@ class RuleForm extends React.Component<Props, State> {
404
405
}
405
406
406
407
type RuleFormContainerProps = {
407
- api : any ;
408
+ api : Client ;
408
409
config : Config ;
409
410
organization : Organization ;
410
411
project : Project ;
You can’t perform that action at this time.
0 commit comments