This commit is contained in:
2025-12-04 17:54:31 +01:00
parent eb403c3aac
commit db4a851a81
41 changed files with 3108 additions and 0 deletions

View File

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