import { ConnectionOpts, Ingress } from "./api.js"; //#region src/ingress.d.ts /** * Connect to the restate Ingress * * @param opts connection options * @returns a connection the the restate ingress */ declare function connect(opts: ConnectionOpts): Ingress; declare class HttpCallError extends Error { readonly status: number; readonly responseText: string; readonly message: string; constructor(status: number, responseText: string, message: string); } //#endregion export { HttpCallError, connect }; //# sourceMappingURL=ingress.d.ts.map