import { AxiosInstance } from "axios"; import { AuthenticateResponse } from ".."; export default class BaseModule { protected client: AxiosInstance; protected fs_id: String; protected token: AuthenticateResponse; constructor(client: AxiosInstance, fs_id: String, token: AuthenticateResponse); }