timemanager/frontend/src/api/variables.ts

10 lines
219 B
TypeScript
Raw Normal View History

2023-09-25 11:01:28 +02:00
import { InjectionToken } from '@angular/core';
export const BASE_PATH = new InjectionToken<string>('basePath');
export const COLLECTION_FORMATS = {
'csv': ',',
'tsv': ' ',
'ssv': ' ',
'pipes': '|'
}