-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
35 lines (28 loc) · 709 Bytes
/
index.js
File metadata and controls
35 lines (28 loc) · 709 Bytes
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
import { configure, getClientID, hasClientID } from './base/configure.coffee'
import errors from './base/errors.coffee'
import ID from './base/ID.coffee'
import { finishPendingLogin, getLoginStatus, getLoginURL, getUser, hasPendingLogin, isLoggedIn, logout, setUser } from './net/account.coffee'
import { getRatelimitStatus } from './net/ratelimit.coffee'
import { load, loadWatch, preload, reload, submit, watch } from './ops/ops.coffee'
export default {
errors,
ID,
configure,
getClientID,
hasClientID,
finishPendingLogin,
getLoginStatus,
getLoginURL,
getUser,
hasPendingLogin,
isLoggedIn,
logout,
setUser,
getRatelimitStatus,
load,
loadWatch,
preload,
reload,
submit,
watch,
}