@@ -24,22 +24,21 @@ export type Start = void;
2424
2525export interface AlertingExamplePublicSetupDeps {
2626 alerts : AlertingSetup ;
27- triggers_actions_ui : TriggersAndActionsUIPublicPluginSetup ;
27+ triggersActionsUi : TriggersAndActionsUIPublicPluginSetup ;
2828 developerExamples : DeveloperExamplesSetup ;
2929}
3030
3131export interface AlertingExamplePublicStartDeps {
3232 alerts : AlertingSetup ;
33- triggers_actions_ui : TriggersAndActionsUIPublicPluginSetup ;
33+ triggersActionsUi : TriggersAndActionsUIPublicPluginSetup ;
3434 charts : ChartsPluginStart ;
3535 data : DataPublicPluginStart ;
3636}
3737
3838export class AlertingExamplePlugin implements Plugin < Setup , Start , AlertingExamplePublicSetupDeps > {
3939 public setup (
4040 core : CoreSetup < AlertingExamplePublicStartDeps , Start > ,
41- // eslint-disable-next-line @typescript-eslint/naming-convention
42- { alerts, triggers_actions_ui, developerExamples } : AlertingExamplePublicSetupDeps
41+ { alerts, triggersActionsUi, developerExamples } : AlertingExamplePublicSetupDeps
4342 ) {
4443 core . application . register ( {
4544 id : 'AlertingExample' ,
@@ -52,8 +51,8 @@ export class AlertingExamplePlugin implements Plugin<Setup, Start, AlertingExamp
5251 } ,
5352 } ) ;
5453
55- triggers_actions_ui . alertTypeRegistry . register ( getAlwaysFiringAlertType ( ) ) ;
56- triggers_actions_ui . alertTypeRegistry . register ( getPeopleInSpaceAlertType ( ) ) ;
54+ triggersActionsUi . alertTypeRegistry . register ( getAlwaysFiringAlertType ( ) ) ;
55+ triggersActionsUi . alertTypeRegistry . register ( getPeopleInSpaceAlertType ( ) ) ;
5756
5857 registerNavigation ( alerts ) ;
5958
0 commit comments