Browse Source

clean code

Shun Miyazawa 10 months ago
parent
commit
0cf077bd9d
1 changed files with 5 additions and 1 deletions
  1. 5 1
      apps/app/src/server/service/search-delegator/elasticsearch.ts

+ 5 - 1
apps/app/src/server/service/search-delegator/elasticsearch.ts

@@ -25,7 +25,11 @@ import type { UpdateOrInsertPagesOpts } from '../interfaces/search';
 import { aggregatePipelineToIndex } from './aggregate-to-index';
 import type { AggregatedPage, BulkWriteBody, BulkWriteCommand } from './bulk-write';
 import {
-  getClient, type ElasticsearchClientDelegator, isES9ClientDelegetor, isES7ClientDelegetor, isES8ClientDelegetor,
+  getClient,
+  isES9ClientDelegetor,
+  isES7ClientDelegetor,
+  isES8ClientDelegetor,
+  type ElasticsearchClientDelegator,
 } from './elasticsearch-client-delegator';
 
 const logger = loggerFactory('growi:service:search-delegator:elasticsearch');