openreplay/frontend/app/services/BaseService.ts

13 lines
No EOL
295 B
TypeScript

import APIClient from 'App/api_client';
export default class BaseService {
client: APIClient;
constructor(client?: APIClient) {
this.client = client ? client : new APIClient();
}
initClient(client?: APIClient) {
this.client = client || new APIClient();
}
}