We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b50912 commit 332b269Copy full SHA for 332b269
src/typings/query.ts
@@ -1,6 +1,3 @@
1
-const QUERY_PROGRESS_VALUE_MIN = 0;
2
-const QUERY_PROGRESS_VALUE_MAX = 1;
3
-
4
interface QueryArgs {
5
queryString: string;
6
isCaseSensitive: boolean;
@@ -17,12 +14,15 @@ interface QueryResultsType {
17
14
18
15
type QueryResults = Map<number, QueryResultsType[]>;
19
16
20
-export {
21
- QUERY_PROGRESS_VALUE_MAX,
22
- QUERY_PROGRESS_VALUE_MIN,
23
-};
+const QUERY_PROGRESS_VALUE_MIN = 0;
+const QUERY_PROGRESS_VALUE_MAX = 1;
+
24
export type {
25
QueryArgs,
26
QueryResults,
27
QueryResultsType,
28
};
+export {
+ QUERY_PROGRESS_VALUE_MAX,
+ QUERY_PROGRESS_VALUE_MIN,
+};
0 commit comments