@scaffoldly/rowdy 0.1.0-beta.20251126113728.e647bef → 0.1.0-beta.20251126133227.deb95bd

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
@@ -260,7 +260,8 @@ declare class HttpHeaders implements ILoggable {
260
260
  intoAxios(): AxiosHeaders;
261
261
  intoJSON(): Record<string, unknown>;
262
262
  intoHeaders(): Headers;
263
- override(key: string, value?: string | string[] | undefined): this;
263
+ override(key: string, value?: string | string[] | undefined | null): this;
264
+ with(key: string, value: string | string[] | undefined | null): HttpHeaders;
264
265
  repr(): string;
265
266
  }
266
267
  declare abstract class HttpResponse implements ILoggable {