Skip to content

PlatformContextOptions

@tsed/platform-http

Usage

typescript
import { PlatformContextOptions } from "@tsed/platform-http";

See /packages/platform/platform-http/src/types/common/domain/PlatformContext.ts.

Overview

ts
interface PlatformContextOptions extends DIContextOptions {
    event: IncomingEvent;
    ignoreUrlPatterns?: any[];
    endpoint?: EndpointMetadata;
}

event

ts
event: IncomingEvent;

ignoreUrlPatterns

ts
ignoreUrlPatterns?: any[];

endpoint

ts
endpoint?: EndpointMetadata;

Released under the MIT License.