Skip to content

Commit 8b95468

Browse files
committed
lint
1 parent 7441f88 commit 8b95468

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/indexes.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ class Index<T extends Record<string, any> = Record<string, any>> {
7575
* @param config - Additional request configuration options
7676
* @returns Promise containing the search response
7777
*/
78-
async search<D extends Record<string, any> = T, S extends SearchParams = SearchParams>(
78+
async search<
79+
D extends Record<string, any> = T,
80+
S extends SearchParams = SearchParams
81+
>(
7982
query?: string | null,
8083
options?: S,
8184
config?: Partial<Request>
@@ -98,7 +101,10 @@ class Index<T extends Record<string, any> = Record<string, any>> {
98101
* @param config - Additional request configuration options
99102
* @returns Promise containing the search response
100103
*/
101-
async searchGet<D extends Record<string, any> = T, S extends SearchParams = SearchParams>(
104+
async searchGet<
105+
D extends Record<string, any> = T,
106+
S extends SearchParams = SearchParams
107+
>(
102108
query?: string | null,
103109
options?: S,
104110
config?: Partial<Request>

0 commit comments

Comments
 (0)