UNPKG

@tuentyfaiv/http

Version:

Library for http requests based on fetch

9 lines (8 loc) 293 B
import type { HttpStorage } from "../typing/classes/http.typing.js"; export declare class Storage implements HttpStorage { #private; constructor(); getItem: (key: string) => string | null; setItem: (key: string, value: string) => void; removeItem: (key: string) => void; }