UNPKG

landstrasse

Version:

Strongly typed WAMP Client for browsers

16 lines (15 loc) 488 B
import AbstractAuthProvider from './AbstractAuthProvider'; /** * Cookie authentication provider. * * Providing an instance of this class means that the client thinks that it is already * authenticated by the cookies it sent on the transport level. */ declare class CookieAuthProvider extends AbstractAuthProvider { get isTransportLevel(): boolean; /** * Creates a new instance of the cookie auth provider. */ constructor(); } export default CookieAuthProvider;