summaryrefslogtreecommitdiff
path: root/client/types.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2019-04-28 17:12:15 +0200
committerJules Laplace <julescarbon@gmail.com>2019-04-28 17:12:15 +0200
commitd349e62cf53eda4b1a6b3cdc75ae9302dc2d4d5d (patch)
tree84a978c41c2c585b68a3eee3048785b5c3f60d6c /client/types.js
parentece8612b7077d1a71de21badb43d94b8af3ab10a (diff)
browse by clicking results
Diffstat (limited to 'client/types.js')
-rw-r--r--client/types.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/types.js b/client/types.js
index 6311816..9a66973 100644
--- a/client/types.js
+++ b/client/types.js
@@ -7,10 +7,13 @@ export const tagAsType = (type, names) => (
)
export const api = tagAsType('api', [
- 'loading', 'loaded', 'error',
+ 'loading', 'loaded', 'error', 'updateQuery',
])
export const system = tagAsType('system', [
])
export const init = '@@INIT'
+
+export const MATCH_THRESHOLD = 6
+export const SIMILAR_THRESHOLD = 20