/** * Simple HTTP interaction module */ export default class BasicHTTP { static execBeacon(path: string, data?: any | null): Promise; static exec(protocol: string, path: string, data?: any | null): Promise; }