Skip to content

Commit

Permalink
Merge branch 'master' into kl/add-knn-query
Browse files Browse the repository at this point in the history
  • Loading branch information
sudo-suhas authored May 5, 2024
2 parents db871d8 + 8f73d34 commit 6c30b03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9011,15 +9011,15 @@ declare namespace esb {
* @param {string} type One of `boolean`, `composite`, `date`, `double`, `geo_point`, `ip`, `keyword`, `long`, `lookup`.
* @returns {void}
*/
type(type: 'boolean' | 'composite' | 'date' | 'double' | 'geo_point' | 'ip' | 'keyword' | 'long' | 'lookup');
type(type: 'boolean' | 'composite' | 'date' | 'double' | 'geo_point' | 'ip' | 'keyword' | 'long' | 'lookup'): void;

/**
* Sets the source of the script.
*
* @param {string} script
* @returns {void}
*/
script(script: string);
script(script: string): void;

/**
* Override default `toJSON` to return DSL representation for the `script`.
Expand Down

0 comments on commit 6c30b03

Please sign in to comment.