Skip to content
Snippets Groups Projects
variables.ts 219 B
Newer Older
  • Learn to ignore specific revisions
  • import { InjectionToken } from '@angular/core';
    
    export const BASE_PATH = new InjectionToken<string>('basePath');
    export const COLLECTION_FORMATS = {
        'csv': ',',
        'tsv': '   ',
        'ssv': ' ',
        'pipes': '|'
    }