deno.land / x / deno@v1.28.2 / cli / bench / testdata / npm / hono / dist / middleware / compress / index.d.ts
123456789import type { Context } from '../../context';import type { Next } from '../../hono';declare type EncodingType = 'gzip' | 'deflate';interface CompressionOptions { encoding?: EncodingType;}export declare const compress: (options?: CompressionOptions) => (ctx: Context, next: Next) => Promise<void>;export {};
Version Info