12 lines
299 B
JavaScript
12 lines
299 B
JavaScript
export const DOWNSTREAM = 'downstream';
|
|
export const MAIN = 'main';
|
|
export const UPSTREAM = 'upstream';
|
|
|
|
/*
|
|
this value is based on the gl-pipeline-job-width class
|
|
plus some extra for the margins
|
|
*/
|
|
export const ONE_COL_WIDTH = 180;
|
|
|
|
export const REST = 'rest';
|
|
export const GRAPHQL = 'graphql';
|