Skip to content

Commit

Permalink
fix: code style
Browse files Browse the repository at this point in the history
Signed-off-by: Mahmoud Abughali <[email protected]>
  • Loading branch information
Mahmoud Abughali committed Nov 5, 2024
1 parent e85a0f6 commit 16bebad
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tools/database/elasticsearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ export interface ElasticSearchToolOptions extends BaseToolOptions {
connection: ClientOptions;
}

export type ElasticSearchToolResult = CatIndicesResponse | IndicesGetMappingResponse | SearchResponse;
export type ElasticSearchToolResult =
| CatIndicesResponse
| IndicesGetMappingResponse
| SearchResponse;

export const ElasticSearchAction = {
ListIndices: "LIST_INDICES",
Expand Down

0 comments on commit 16bebad

Please sign in to comment.