forked from wechaty/wechaty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ts
44 lines (38 loc) · 923 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
31
32
33
34
35
36
37
38
39
40
41
42
43
import {
Config,
Sayable,
log,
} from './src/config'
import Contact from './src/contact'
// ISSUE #70 import { FriendRequest } from './src/friend-request'
import FriendRequest from './src/puppet-web/friend-request'
import IoClient from './src/io-client'
import {
Message,
MediaMessage,
MsgType,
} from './src/message'
import Puppet from './src/puppet'
import PuppetWeb from './src/puppet-web/'
import Room from './src/room'
import UtilLib from './src/util-lib'
import Wechaty from './src/wechaty'
const VERSION = require('./package.json').version
export {
Config,
Contact,
FriendRequest,
IoClient,
Message,
MediaMessage,
MsgType,
Puppet,
PuppetWeb,
Room,
Sayable,
UtilLib,
VERSION,
Wechaty,
log, // for convenionce use npmlog with environment variable LEVEL
}
export default Wechaty