@hapiness/proxy
Version:
Proxy extension for Hapiness
12 lines (11 loc) • 379 B
TypeScript
import { CoreDecorator } from '@hapiness/core';
export interface ProxyHandler {
}
export declare const ProxyHandler: (...args: any[]) => (cls: any) => any;
export interface ProxyResponse {
}
export declare const ProxyResponse: (...args: any[]) => (cls: any) => any;
export interface ProxyAuth {
schemeName: string;
}
export declare const ProxyAuth: CoreDecorator<ProxyAuth>;