@scaffoldly/rowdy 0.1.0-beta.20251226155245.d988468 → 0.1.0-beta.20251229160938.bf627da

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -235,6 +235,8 @@ declare class Environment implements ILoggable {
235
235
  repr(): string;
236
236
  }
237
237
 
238
+ declare const ABORT: AbortController;
239
+
238
240
  type Source = {
239
241
  method: string;
240
242
  uri: URI;
@@ -270,12 +272,12 @@ declare class HttpHeaders implements ILoggable {
270
272
  repr(): string;
271
273
  }
272
274
  declare abstract class HttpResponse implements ILoggable {
273
- protected environment: Environment;
275
+ protected environment: Pipeline['environment'];
274
276
  private _status;
275
277
  private _headers;
276
278
  private _cookies;
277
279
  private _data;
278
- constructor(environment: Environment, status: number, headers: HttpHeaders, cookies: string[], data: Readable);
280
+ constructor(environment: Pipeline['environment'], status: number, headers: HttpHeaders, cookies: string[], data: Readable);
279
281
  get rowdy(): Rowdy;
280
282
  get status(): number;
281
283
  get headers(): HttpHeaders;
@@ -334,6 +336,4 @@ declare class Rowdy implements IApi {
334
336
  cri(proxy: HttpProxy<Pipeline>): Observable<GrpcResponse>;
335
337
  }
336
338
 
337
- declare const ABORT: AbortController;
338
-
339
339
  export { ABORT, Environment, Logger, Routes, Rowdy, URI };