Skip to content

Commit

Permalink
Fix styling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ogzhanolguncu committed Jan 18, 2024
1 parent b052b85 commit 12ead65
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/vector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ export class Index {
* @param id - List of ids or single id
* @returns A promise that resolves when the request to delete the index is completed.
*/
delete = (args: CommandArgs<typeof DeleteCommand>) =>
new DeleteCommand(args).exec(this.client);
delete = (args: CommandArgs<typeof DeleteCommand>) => new DeleteCommand(args).exec(this.client);

/**
* Queries an index with specified parameters.
Expand Down Expand Up @@ -90,8 +89,7 @@ export class Index {
*
* @returns {string} A promise that resolves with the result of the upsert operation after the command is executed.
*/
upsert = (args: CommandArgs<typeof UpsertCommand>) =>
new UpsertCommand(args).exec(this.client);
upsert = (args: CommandArgs<typeof UpsertCommand>) => new UpsertCommand(args).exec(this.client);

/**
* It's used for retrieving specific items from the index, optionally including
Expand Down

0 comments on commit 12ead65

Please sign in to comment.