Skip to content

Commit

Permalink
Fix TS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebelga committed Mar 17, 2020
1 parent 328c4a2 commit 0fe8cdf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion x-pack/plugins/license_management/server/lib/license.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { LicensingPluginSetup } from '../../../../../plugins/licensing/server';
import { LicensingPluginSetup } from '../../../licensing/server';
import { CallAsCurrentUser } from '../types';

const getLicensePath = (acknowledge: boolean) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { LicensingPluginSetup } from '../../../../../plugins/licensing/server';
import { LicensingPluginSetup } from '../../../licensing/server';
import { CallAsCurrentUser } from '../types';

const getStartBasicPath = (acknowledge: boolean) =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/

import { LicensingPluginSetup } from '../../../../../plugins/licensing/server';
import { LicensingPluginSetup } from '../../../licensing/server';
import { CallAsCurrentUser } from '../types';

export async function canStartTrial(callAsCurrentUser: CallAsCurrentUser) {
Expand Down
4 changes: 2 additions & 2 deletions x-pack/plugins/license_management/server/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
*/
import { ScopedClusterClient, IRouter } from 'kibana/server';

import { LicensingPluginSetup } from '../../../../plugins/licensing/server';
import { SecurityPluginSetup } from '../../../../plugins/security/server';
import { LicensingPluginSetup } from '../../licensing/server';
import { SecurityPluginSetup } from '../../security/server';
import { isEsError } from './lib/is_es_error';

export interface Dependencies {
Expand Down

0 comments on commit 0fe8cdf

Please sign in to comment.