bitwarden-estensione-browser/src/services/nodeApi.service.ts

21 lines
725 B
TypeScript
Raw Normal View History

import * as FormData from 'form-data';
2018-05-15 15:02:57 +02:00
import * as fe from 'node-fetch';
2018-05-15 05:56:27 +02:00
import { ApiService } from './api.service';
import { PlatformUtilsService } from '../abstractions/platformUtils.service';
import { TokenService } from '../abstractions/token.service';
2018-05-15 15:02:57 +02:00
(global as any).fetch = fe.default;
(global as any).Request = fe.Request;
(global as any).Response = fe.Response;
(global as any).Headers = fe.Headers;
(global as any).FormData = FormData;
2018-05-15 05:56:27 +02:00
export class NodeApiService extends ApiService {
constructor(tokenService: TokenService, platformUtilsService: PlatformUtilsService,
2018-05-16 05:40:15 +02:00
logoutCallback: (expired: boolean) => Promise<void>) {
2018-05-15 05:56:27 +02:00
super(tokenService, platformUtilsService, logoutCallback);
}
}