UNPKG

@smithy/middleware-endpoint

Version:

[![NPM version](https://img.shields.io/npm/v/@smithy/middleware-endpoint/latest.svg)](https://www.npmjs.com/package/@smithy/middleware-endpoint) [![NPM downloads](https://img.shields.io/npm/dm/@smithy/middleware-endpoint.svg)](https://www.npmjs.com/packag

12 lines (11 loc) 571 B
import type { EndpointParameters, Pluggable, RelativeMiddlewareOptions, SerializeHandlerOptions } from "@smithy/types"; import type { EndpointResolvedConfig } from "./resolveEndpointConfig"; import type { EndpointParameterInstructions } from "./types"; /** * @internal */ export declare const endpointMiddlewareOptions: SerializeHandlerOptions & RelativeMiddlewareOptions; /** * @internal */ export declare const getEndpointPlugin: <T extends EndpointParameters>(config: EndpointResolvedConfig<T>, instructions: EndpointParameterInstructions) => Pluggable<any, any>;