UNPKG

landstrasse

Version:

Strongly typed WAMP Client for browsers

16 lines 814 B
// - Export public interfaces to interact with the library export * from './types/Serializer'; export * from './types/Transport'; export * from './types/AuthProvider'; export * from './types/Connection'; // - Export errors export { default as WampError } from './error/WampError'; export { default as ConnectionOpenError } from './error/ConnectionOpenError'; // - Export the different authentication providers export { default as AbstractAuthProvider } from './auth/AbstractAuthProvider'; export { default as TLSAuthProvider } from './auth/TLS'; export { default as TicketAuthProvider } from './auth/Ticket'; export { default as CookieAuthProvider } from './auth/Cookie'; export { default as AnonymousAuthProvider } from './auth/Anonymous'; export { default } from './connection'; //# sourceMappingURL=index.js.map