/** * Filters for checking request methods * @packageDocumentation */ import { Filter } from "../filter"; /** * GET */ export declare const get: Filter<[]>; /** * HEAD */ export declare const head: Filter<[]>; /** * POST */ export declare const post: Filter<[]>; /** * PUT */ export declare const put: Filter<[]>; /** * DELETE */ export declare const del: Filter<[]>; /** * CONNECT */ export declare const connect: Filter<[]>; /** * OPTIONS */ export declare const options: Filter<[]>; /** * TRACE */ export declare const trace: Filter<[]>; /** * PATCH */ export declare const patch: Filter<[]>; /** * Extracts the request method */ export declare const extract: Filter<[string]>; /** * Checks if the request method matches the provided method * * @param method - Method to match */ export declare function custom(method: string): Filter<[]>;