Fork of atp.tools as a universal profile for people on the ATmosphere
1// constants.ts
2import { TimerOption } from "./types";
3
4export const UPDATE_INTERVAL = 250;
5export const TIME_THRESHOLD = 1;
6export const CHART_MARGIN = { top: 6, right: 30, left: 20, bottom: 2 };
7export const TIMER_OPTIONS: readonly TimerOption[] = [15, 30, 60, 120] as const;
8export const LINE_HEIGHT = 30;
9export const VISIBLE_LINES = 3;