import { Service as AuthService } from './build/juapp-auth-service-client'; import { Service as FreelancerService } from './build/juapp-freelancer-service-client'; import { Service as GitService } from './build/juapp-git-service-client'; export default class Class { baseUrl: string; token: string; constructor(baseUrl: string, token: string); auth: typeof AuthService; freelancer: typeof FreelancerService; git: typeof GitService; }