mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-28 02:55:55 +00:00
14 lines
426 B
TypeScript
14 lines
426 B
TypeScript
![]() |
import { EntityType } from '../../../types.generated';
|
||
|
import { BrowsePathResolver } from '../browsePathHelper';
|
||
|
import { chartBrowsePaths, filterChartByPath } from '../searchResult/chartSearchResult';
|
||
|
|
||
|
const browsePathResolver = new BrowsePathResolver({
|
||
|
entityType: EntityType.Chart,
|
||
|
paths: chartBrowsePaths,
|
||
|
filterEntityHandler: filterChartByPath,
|
||
|
});
|
||
|
|
||
|
export default {
|
||
|
...browsePathResolver.getBrowse(),
|
||
|
};
|