UNPKG

1.71 kBPlain TextView Raw
1/**
2 * Wechaty Chatbot SDK - https://github.com/wechaty/wechaty
3 *
4 * @copyright 2016 Huan LI (李卓桓) <https://github.com/huan>, and
5 * Wechaty Contributors <https://github.com/wechaty>.
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 */
20export {
21 ScanStatus,
22 UrlLinkPayload,
23 FileBox,
24 MemoryCard,
25} from 'wechaty-puppet'
26
27export {
28 config,
29 log,
30 qrcodeValueToImageUrl,
31 VERSION,
32} from './config'
33
34/**
35 * We need to put `Wechaty` at the beginning of this file for import
36 * because we have circular dependencies between `Puppet` & `Wechaty`
37 */
38export {
39 Wechaty,
40 WechatyOptions,
41} from './wechaty'
42export {
43 WechatyPlugin,
44 WechatyPluginUninstaller,
45} from './plugin'
46
47export {
48 PuppetModuleName,
49} from './puppet-config'
50
51export {
52 Contact,
53 Tag,
54 Friendship,
55 Favorite,
56 Message,
57 Image,
58 Moment,
59 Money,
60 Room,
61 RoomInvitation,
62 UrlLink,
63 MiniProgram,
64} from './user/mod'
65
66export { IoClient } from './io-client'
67export {
68 Sayable,
69} from './types'