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

16 lines
512 B
TypeScript
Raw Normal View History

2018-05-15 05:56:27 +02:00
import { Utils } from '../misc/utils';
import { ApiService } from './api.service';
import { PlatformUtilsService } from '../abstractions/platformUtils.service';
import { TokenService } from '../abstractions/token.service';
import * as fetch from 'node-fetch';
export class NodeApiService extends ApiService {
constructor(tokenService: TokenService, platformUtilsService: PlatformUtilsService,
logoutCallback: Function) {
super(tokenService, platformUtilsService, logoutCallback);
}
}