arrakis-js
Version:
Arrakis Javascript client library
15 lines (14 loc) • 661 B
JavaScript
// Copyright (c) 2022, California Institute of Technology and contributors
//
// You should have received a copy of the licensing terms for this
// software included in the file "LICENSE" located in the top-level
// directory of this package. If you did not, you can view a copy at
// https://git.ligo.org/ngdd/arrakis-python/-/raw/main/LICENSE
export const DEFAULT_ARRAKIS_SERVER = "http://localhost:8000";
export const DEFAULT_MATCH = ".*";
// 2 seconds in milliseconds
export const DEFAULT_TIMEOUT = 2000;
// 125 milliseconds
export const DEFAULT_QUEUE_TIMEOUT = 125;
export const MIN_SAMPLE_RATE = 0;
export const MAX_SAMPLE_RATE = Number.MAX_SAFE_INTEGER;