mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-25 01:28:03 +00:00
15 lines
324 B
TypeScript
15 lines
324 B
TypeScript
![]() |
import { Time } from '@datahub/metadata-types/types/common/time';
|
||
|
|
||
|
/**
|
||
|
* The minimum number of Time for dwell time to be considered successful
|
||
|
* ms
|
||
|
* @type Time
|
||
|
*/
|
||
|
export const SuccessfulDwellTimeLength: Time = 5 * 1000;
|
||
|
|
||
|
/**
|
||
|
* Defines the search route name
|
||
|
* @type string
|
||
|
*/
|
||
|
export const searchRouteName = 'search';
|