![]() 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/core/ |
import ConnectionManager from './connection/connection_manager'; import { ChannelAuthorizationOptions, UserAuthenticationOptions } from './auth/options'; import { ChannelAuthorizerGenerator, DeprecatedAuthOptions } from './auth/deprecated_channel_authorizer'; import { AuthTransport, Transport } from './config'; import * as nacl from 'tweetnacl'; export interface Options { activityTimeout?: number; auth?: DeprecatedAuthOptions; // DEPRECATED use channelAuthorization instead authEndpoint?: string; // DEPRECATED use channelAuthorization instead authTransport?: AuthTransport; // DEPRECATED use channelAuthorization instead authorizer?: ChannelAuthorizerGenerator; // DEPRECATED use channelAuthorization instead channelAuthorization?: ChannelAuthorizationOptions; userAuthentication?: UserAuthenticationOptions; cluster?: string; enableStats?: boolean; disableStats?: boolean; disabledTransports?: Transport[]; enabledTransports?: Transport[]; forceTLS?: boolean; httpHost?: string; httpPath?: string; httpPort?: number; httpsPort?: number; ignoreNullOrigin?: boolean; nacl?: nacl; pongTimeout?: number; statsHost?: string; timelineParams?: any; unavailableTimeout?: number; wsHost?: string; wsPath?: string; wsPort?: number; wssPort?: number; }