@blocklet/search-kit-js 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ import { MeiliSearch, Config } from 'meilisearch';
|
|
|
2
2
|
export * from 'meilisearch';
|
|
3
3
|
|
|
4
4
|
declare class SearchKitClient extends MeiliSearch {
|
|
5
|
-
constructor(config
|
|
5
|
+
constructor(config?: Omit<Config, 'host' | 'apiKey'>);
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export { SearchKitClient };
|
package/dist/index.d.mts
CHANGED
|
@@ -2,7 +2,7 @@ import { MeiliSearch, Config } from 'meilisearch';
|
|
|
2
2
|
export * from 'meilisearch';
|
|
3
3
|
|
|
4
4
|
declare class SearchKitClient extends MeiliSearch {
|
|
5
|
-
constructor(config
|
|
5
|
+
constructor(config?: Omit<Config, 'host' | 'apiKey'>);
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export { SearchKitClient };
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { MeiliSearch, Config } from 'meilisearch';
|
|
|
2
2
|
export * from 'meilisearch';
|
|
3
3
|
|
|
4
4
|
declare class SearchKitClient extends MeiliSearch {
|
|
5
|
-
constructor(config
|
|
5
|
+
constructor(config?: Omit<Config, 'host' | 'apiKey'>);
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
export { SearchKitClient };
|