red-ui/libs/red-ui-http/src/lib/variables.ts
2020-10-27 16:03:40 +02:00

10 lines
212 B
TypeScript

import { InjectionToken } from '@angular/core';
export const BASE_PATH = new InjectionToken<string>('basePath');
export const COLLECTION_FORMATS = {
csv: ',',
tsv: ' ',
ssv: ' ',
pipes: '|'
};