nest-oidc-provider
Version:
oidc-provider module for Nest framework (node.js)
8 lines (7 loc) • 303 B
TypeScript
import { ExecutionContext } from '@nestjs/common';
import { IncomingMessage, ServerResponse } from 'http';
export declare function validatePath(pathname?: string): string;
export declare function getReqRes(ctx: ExecutionContext): {
req: IncomingMessage;
res: ServerResponse<IncomingMessage>;
};