export interface ITeslaApiRequestor { readonly credentials: { username: string; password: any; }; getRequest(path: string, params?: any): Promise; postRequest(path: string, body?: any, params?: any): Promise; }