![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/frontend/node_modules/pusher-js/src/runtimes/ |
import { AuthTransports } from '../core/auth/auth_transports'; import TimelineSender from '../core/timeline/timeline_sender'; import TimelineTransport from '../core/timeline/timeline_transport'; import Ajax from '../core/http/ajax'; import Reachability from '../core/reachability'; import TransportsTable from '../core/transports/transports_table'; import Socket from '../core/socket'; import HTTPFactory from '../core/http/http_factory'; import HTTPRequest from '../core/http/http_request'; import Pusher from '../core/pusher'; import JSONPRequest from './web/dom/jsonp_request'; import Strategy from '../core/strategies/strategy'; import { Config } from '../core/config'; import StrategyOptions from '../core/strategies/strategy_options'; /* This interface is implemented in web/runtime, node/runtime, react-native/runtime and worker/runtime. Its job is to be the only point of contact to platform-specific code for the core library. When the core library imports "runtime", Webpack will look for src/runtimes/<platform>/runtime.ts. This is how PusherJS keeps core and platform-specific code separate. */ interface Runtime { setup(PusherClass: { new (key: string, options: any): Pusher; ready(): void; }): void; getProtocol(): string; getAuthorizers(): AuthTransports; getLocalStorage(): any; TimelineTransport: TimelineTransport; createXHR(): Ajax; createWebSocket(url: string): Socket; getNetwork(): Reachability; getDefaultStrategy( config: Config, options: StrategyOptions, defineTransport: Function ): Strategy; Transports: TransportsTable; getWebSocketAPI(): new (url: string) => Socket; getXHRAPI(): new () => Ajax; addUnloadListener(listener: Function): void; removeUnloadListener(listener: Function): void; transportConnectionInitializer: Function; HTTPFactory: HTTPFactory; isXHRSupported(): boolean; createSocketRequest(method: string, url: string): HTTPRequest; randomInt(max: number): number; // these methods/types are only implemented in the web Runtime, so they're // optional but must be included in the interface getDocument?(): Document; createScriptRequest?(url: string): any; createJSONPRequest?(url: string, data: any): JSONPRequest; ScriptReceivers?: any; isXDRSupported?(useTLS?: boolean): boolean; } export default Runtime;