Skip to content

Commit

Permalink
feat: export drilldown filter type
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunlalb committed Jun 16, 2022
1 parent bb7afd6 commit cea209c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions projects/observability/src/pages/explorer/explorer-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class ExplorerService {
) {}
public buildNavParamsWithFilters(
scopeQueryParam: ScopeQueryParam,
filters: DrilldownFilter[]
filters: ExplorerDrilldownFilter[]
): Observable<NavigationParams> {
const filterStrings$: Observable<string>[] = filters.map(filter =>
this.metadataService
Expand Down Expand Up @@ -49,4 +49,4 @@ export class ExplorerService {
}
}

type DrilldownFilter = Omit<Filter, 'metadata' | 'userString' | 'urlString'>;
export type ExplorerDrilldownFilter = Omit<Filter, 'metadata' | 'userString' | 'urlString'>;

0 comments on commit cea209c

Please sign in to comment.