DIR: /var/www/devs.lapieza.net/node_modules/pusher-js/src/core/auth/ |
Current File : /var/www/devs.lapieza.net/node_modules/pusher-js/src/core/auth/auth_transports.ts |
import AbstractRuntime from '../../runtimes/interface'; import { AuthRequestType, InternalAuthOptions } from './options'; interface AuthTransport { ( context: AbstractRuntime, query: string, authOptions: InternalAuthOptions, authRequestType: AuthRequestType, callback: Function ): void; } interface AuthTransports { [index: string]: AuthTransport; } export { AuthTransport, AuthTransports }; |