Welcome to mirror list, hosted at ThFree Co, Russian Federation.

constants.js « utils « lib « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eb6c9bf7eb68110e4d7a3d0ef1ce6c8aba90cdbb (plain)
1
2
3
4
5
6
7
8
9
10
export const BYTES_IN_KIB = 1024;
export const HIDDEN_CLASS = 'hidden';

export const DATETIME_RANGE_TYPES = {
  fixed: 'fixed',
  anchored: 'anchored',
  rolling: 'rolling',
  open: 'open',
  invalid: 'invalid',
};