DIR: /proc/1784574/task/1784574/cwd/node_modules/pusher-js/src/core/auth/ |
Current File : //proc/1784574/task/1784574/cwd/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 }; |