UNPKG

@rocket.chat/apps-engine

Version:

The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.

13 lines (12 loc) 444 B
/// <reference types="node" /> /// <reference types="node" /> /// <reference types="node" /> import type * as http from 'http'; import type * as https from 'https'; import type * as net from 'net'; type IHttp = typeof http; type IHttps = typeof https; type INet = typeof net; type NetworkingLibs = IHttp | IHttps | INet; export declare const moduleHandlerFactory: (module: string) => (appId: string) => ProxyHandler<NetworkingLibs>; export {};