UNPKG

rjweb-server

Version:

Easy and Robust Way to create a Web Server with Many Easy-to-use Features in NodeJS

5 lines (4 loc) 211 B
/// <reference types="node" /> import { PassThrough } from "stream"; export type CompressTypes = 'none' | 'gzip' | 'br' | 'deflate'; export default function handleCompressType(type: CompressTypes): PassThrough;