Skip to content

Commit

Permalink
adding type to import
Browse files Browse the repository at this point in the history
  • Loading branch information
cauemarcondes committed Jun 22, 2023
1 parent ed5de2e commit 4f1d2c2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -6,7 +6,7 @@
*/
import qs from 'query-string';
import type { SerializableRecord } from '@kbn/utility-types';
import { LocatorDefinition, LocatorPublic } from '@kbn/share-plugin/public';
import type { LocatorDefinition, LocatorPublic } from '@kbn/share-plugin/public';

export interface FlamegraphLocatorParams extends SerializableRecord {
kuery?: string;
Expand Down
Expand Up @@ -6,7 +6,7 @@
*/
import qs from 'query-string';
import type { SerializableRecord } from '@kbn/utility-types';
import { LocatorDefinition, LocatorPublic } from '@kbn/share-plugin/public';
import type { LocatorDefinition, LocatorPublic } from '@kbn/share-plugin/public';

export interface StacktracesLocatorParams extends SerializableRecord {
kuery?: string;
Expand Down
Expand Up @@ -6,7 +6,7 @@
*/
import qs from 'query-string';
import type { SerializableRecord } from '@kbn/utility-types';
import { LocatorDefinition, LocatorPublic } from '@kbn/share-plugin/public';
import type { LocatorDefinition, LocatorPublic } from '@kbn/share-plugin/public';

export interface TopNFunctionsLocatorParams extends SerializableRecord {
kuery?: string;
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/profiling/public/plugin.tsx
Expand Up @@ -14,7 +14,7 @@ import {
} from '@kbn/core/public';
import { i18n } from '@kbn/i18n';
import type { NavigationSection } from '@kbn/observability-shared-plugin/public';
import { Location } from 'history';
import type { Location } from 'history';
import { BehaviorSubject, combineLatest, from, map } from 'rxjs';
import { FlamegraphLocatorDefinition } from './locators/flamegraph_locator';
import { StacktracesLocatorDefinition } from './locators/stacktraces_locator';
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/profiling/public/types.ts
Expand Up @@ -19,7 +19,7 @@ import {
} from '@kbn/observability-shared-plugin/public/plugin';
import { ChartsPluginSetup, ChartsPluginStart } from '@kbn/charts-plugin/public';
import { LicensingPluginSetup } from '@kbn/licensing-plugin/public';
import { SharePluginSetup, SharePluginStart } from '@kbn/share-plugin/public';
import type { SharePluginSetup, SharePluginStart } from '@kbn/share-plugin/public';

export interface ProfilingPluginPublicSetupDeps {
observability: ObservabilityPublicSetup;
Expand Down

0 comments on commit 4f1d2c2

Please sign in to comment.