forked from wechaty/wechaty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
30 lines (27 loc) · 803 Bytes
/
index.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
30
export {
config,
log,
Sayable,
VERSION,
} from './src/config'
export { Contact } from './src/contact'
// ISSUE #70 import { FriendRequest } from './src/friend-request'
export {
PuppetWebFriendRequest as FriendRequest,
} from './src/puppet-web/friend-request'
export {
MsgType,
} from './src/puppet-web/schema'
export { IoClient } from './src/io-client'
export {
Message,
MediaMessage,
} from './src/message'
export { Profile } from './src/profile'
export { Puppet } from './src/puppet'
export { PuppetWeb } from './src/puppet-web/'
export { Room } from './src/room'
export { Misc } from './src/misc'
import Wechaty from './src/wechaty'
export { Wechaty }
export default Wechaty