@scaffoldly/rowdy 0.0.2-1-beta.20251024194719.3cd7b6b → 0.0.2-1-beta.20251024222900.f3c2b55
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 +1 -0
- package/dist/index.js +51 -31
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -310,6 +310,7 @@ declare class HttpHeaders implements ILoggable {
|
|
|
310
310
|
private headers;
|
|
311
311
|
private constructor();
|
|
312
312
|
get userAgent(): string;
|
|
313
|
+
get(header: string): string | string[] | undefined;
|
|
313
314
|
proxy(): HttpHeaders;
|
|
314
315
|
static from(obj: Record<string, string | string[]>): HttpHeaders;
|
|
315
316
|
static fromAxios(axiosHeaders: Partial<AxiosHeaders | AxiosResponseHeaders>): HttpHeaders;
|