/** * The request never got an HTTP response. Carries the host and port rather * than the platform's error text, which differs between runtimes and * platforms and so cannot be asserted in a cross-language test. * Mirrors Python's mirage.commands.builtin.errors.HttpConnectError. */ export declare class HttpConnectError extends Error { readonly host: string; readonly port: number; constructor(host: string, port: number); } export declare class SortKeyError extends Error { } //# sourceMappingURL=errors.d.ts.map