Skip to content

Commit

Permalink
export from public
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasneirynck committed Mar 31, 2021
1 parent bd4d1f7 commit b4dec37
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
2 changes: 2 additions & 0 deletions x-pack/plugins/maps/public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ export { MAP_SAVED_OBJECT_TYPE } from '../common/constants';
export type { RenderTooltipContentParams } from './classes/tooltips/tooltip_property';

export { MapsStartApi } from './api';

export type { MapEmbeddable, MapEmbeddableInput } from './embeddable';
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,11 @@ import minimatch from 'minimatch';
import { IndexPatternMapping } from './types';
import { getLayerList } from './map_config';
import { MAP_SAVED_OBJECT_TYPE } from '../../../../../maps/public';
import {
MapEmbeddable,
MapEmbeddableInput,
// eslint-disable-next-line @kbn/eslint/no-restricted-paths
} from '../../../../../../plugins/maps/public/embeddable';
import type {
RenderTooltipContentParams,
// eslint-disable-next-line @kbn/eslint/no-restricted-paths
} from '../../../../../../plugins/maps/public/classes/tooltips/tooltip_property';
MapEmbeddable,
MapEmbeddableInput,
} from '../../../../../../plugins/maps/public';
import * as i18n from './translations';
import { Query, Filter } from '../../../../../../../src/plugins/data/public';
import {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
* 2.0.
*/

// eslint-disable-next-line @kbn/eslint/no-restricted-paths
import type { RenderTooltipContentParams } from '../../../../../maps/public/classes/tooltips/tooltip_property';
import type { RenderTooltipContentParams } from '../../../../../maps/public';

export interface IndexPatternMapping {
title: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ import { AppState } from '../../../../../state';
import { monitorLocationsSelector } from '../../../../../state/selectors';
import { useMonitorId } from '../../../../../hooks';
import { MonitorLocation } from '../../../../../../common/runtime_types/monitor';
// eslint-disable-next-line @kbn/eslint/no-restricted-paths
import type { RenderTooltipContentParams } from '../../../../../../../maps/public/classes/tooltips/tooltip_property';
import type { RenderTooltipContentParams } from '../../../../../../../maps/public';
import { formatAvailabilityValue } from '../../availability_reporting/availability_reporting';
import { LastCheckLabel } from '../../translations';

Expand Down

0 comments on commit b4dec37

Please sign in to comment.