[APM] Fix inconsistencies from patching backport conflicts from NP migration (#64977)

* [APM] addresses inconsistencies from patching backport conflicts from NP migration

* removes `indexManagementStore` form the '@elastic/apm-rum-react' module declaration
This commit is contained in:
Oliver Gupte 2020-05-04 10:31:09 -07:00 committed by GitHub
parent bf95b30785
commit d94e6d38b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View file

@ -3,5 +3,6 @@
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
declare module '@elastic/apm-rum-react';
declare module '@elastic/apm-rum-react' {
export const ApmRoute: any;
}

View file

@ -8,6 +8,7 @@ import '../../../typings/rison_node';
import '../../infra/types/eui';
// EUIBasicTable
import '../../reporting/public/components/report_listing';
import './apm_rum_react';
// Allow unknown properties in an object
export type AllowUnknownProperties<T> = T extends Array<infer X>