forked from pusher/pusher-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
29 lines (26 loc) · 1.2 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
export {
DeprecatedAuthOptions,
ChannelAuthorizerGenerator
} from './types/src/core/auth/deprecated_channel_authorizer';
export {
UserAuthenticationOptions,
ChannelAuthorizationOptions,
ChannelAuthorizationHandler,
UserAuthenticationHandler,
ChannelAuthorizationCallback,
UserAuthenticationCallback
} from './types/src/core/auth/options';
export { Options } from './types/src/core/options';
export { default as Channel } from './types/src/core/channels/channel';
export { default as PresenceChannel } from './types/src/core/channels/presence_channel';
export { default as Members } from './types/src/core/channels/members';
export { default as Runtime } from './types/src/runtimes/interface';
export { default as ConnectionManager } from './types/src/core/connection/connection_manager';
export { default } from './types/src/core/pusher';
// The following types are provided for backward compatability
export {
DeprecatedAuthOptions as AuthOptions,
DeprecatedChannelAuthorizer as Authorizer,
ChannelAuthorizerGenerator as AuthorizerGenerator
} from './types/src/core/auth/deprecated_channel_authorizer';
export { ChannelAuthorizationCallback as AuthorizerCallback } from './types/src/core/auth/options';