Skip to content

Commit db43986

Browse files
committed
Fix linter issue
1 parent 4494e5d commit db43986

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ export default class Helpers {
193193
* @param {object} options - The client optional configuration for this request.
194194
* @return {array} The documents that matched the request.
195195
*/
196-
async search<TDocument = unknown> (params: T.SearchRequest, options: TransportRequestOptions = {}): Promise<Array<TDocument & {_id: Id}>> {
196+
async search<TDocument = unknown> (params: T.SearchRequest, options: TransportRequestOptions = {}): Promise<Array<TDocument & { _id: Id }>> {
197197
appendFilterPath('hits.hits._id,hits.hits._source', params, true)
198198
options.meta = true
199199
const { body: result } = await this[kClient].search<TDocument>(params, options as TransportRequestOptionsWithMeta)

0 commit comments

Comments
 (0)