UNPKG

chrome-debugging-client

Version:

An async/await friendly Chrome debugging client with TypeScript support

10 lines (9 loc) 292 B
export interface IHTTPClientFactory { create(host: string, port: number): IHTTPClient; } export interface IHTTPClient { get(path: string): Promise<string>; } export default class HTTPClientFactory implements IHTTPClientFactory { create(host: string, port: number): IHTTPClient; }