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