cookie-pusher
Version:
Cookie-aware HTTP client based on axios and tough-cookie
19 lines (18 loc) • 631 B
JavaScript
export { Client, Cookie } from "./client";
export { parseRawHeadersIntoObject } from "./utilities";
export { AxiosError } from "./exceptions";
export { assertTypeExtends } from "./type-helpers";
export { default as neverThrow, Err, Ok, ResultAsync } from "neverthrow";
import { Client, Cookie } from "./client";
import { parseRawHeadersIntoObject } from "./utilities";
import { AxiosError } from "./exceptions";
import { assertTypeExtends } from "./type-helpers";
import neverThrow from "neverthrow";
export default {
Client,
Cookie,
parseRawHeadersIntoObject,
assertTypeExtends,
AxiosError,
neverThrow,
};