UNPKG

pusher-js

Version:

Pusher Channels JavaScript library for browsers, React Native, NodeJS and web workers

14 lines (11 loc) 264 B
export interface URLSchemeParams { useTLS: boolean; hostTLS: string; hostNonTLS: string; httpPath: string; } interface URLScheme { getInitial(key: string, params: any): string; getPath?(key: string, options: any): string; } export default URLScheme;