Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { Container, Service } from 'typedi';
import { IApiSegment } from '@constants/api';
import { ResultWithValue } from '@contracts/resultWithValue';
import { BaseApiService } from '@services/api/baseApiService';
import { getConfig } from '../internal/configService';
@Service()
export class NmsUdJsonFileService extends BaseApiService {
constructor() {
const nmsUdFormDataUrl = getConfig().getNmsUdFormDataUrl();
super(nmsUdFormDataUrl);
}
async getListOf<T>(segment: keyof IApiSegment): Promise<ResultWithValue<Array<T>>> {
const url = `${segment}.json`;
return this.get<Array<T>>(url);
}
}
export const getNmsUdJsonFileService = () => Container.get(NmsUdJsonFileService);
|