@docsearch/js 3.6.0 → 3.6.2

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.
@@ -1 +1,9 @@
1
- export { docsearch as default } from './docsearch';
1
+ import { DocSearchProps as DocSearchProps$1 } from '@docsearch/react';
2
+
3
+ interface DocSearchProps extends DocSearchProps$1 {
4
+ container: HTMLElement | string;
5
+ environment?: typeof window;
6
+ }
7
+ declare function docsearch(props: DocSearchProps): void;
8
+
9
+ export default docsearch;