forked from lthn/blockchain
Introduces a new Angular client SDK for the Lethean Blockchain API, generated via OpenAPI Generator. Includes all necessary Angular service, model, configuration, and packaging files, and updates the Makefile to support the 'angular' target for SDK generation.
9 lines
219 B
TypeScript
Generated
9 lines
219 B
TypeScript
Generated
import { InjectionToken } from '@angular/core';
|
|
|
|
export const BASE_PATH = new InjectionToken<string>('basePath');
|
|
export const COLLECTION_FORMATS = {
|
|
'csv': ',',
|
|
'tsv': ' ',
|
|
'ssv': ' ',
|
|
'pipes': '|'
|
|
}
|