UNPKG

pluto-http-client

Version:

HTTP client for NodeJS. Inspired in the Java JAX-RS spec so you can expect excellence, versatility and extensibility.

10 lines (9 loc) 291 B
import { Header } from "./header"; export declare class EntityTag extends Header { private readonly _isWeak; constructor(value: string, isWeak?: boolean); get value(): string; rawValue(): string; get isWeak(): boolean; static fromString(header: string): EntityTag; }