DIR: /var/www/devs.lapieza.net/node_modules/pusher-js/src/core/connection/ |
Current File : //var/www/devs.lapieza.net/node_modules/pusher-js/src/core/connection/connection_manager_options.ts |
import Timeline from '../timeline/timeline'; import Strategy from '../strategies/strategy'; import StategyOptions from '../strategies/strategy_options'; interface ConnectionManagerOptions { timeline: Timeline; getStrategy: (StrategyOptions) => Strategy; unavailableTimeout: number; pongTimeout: number; activityTimeout: number; useTLS: boolean; } export default ConnectionManagerOptions; |