-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.js
37 lines (36 loc) · 1.03 KB
/
index.js
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
import xs from './lib/xstream/index'
import debounce from './lib/xstream/extra/debounce'
import concat from './lib/xstream/extra/concat'
import dropRepeats from './lib/xstream/extra/dropRepeats'
import { http } from './wrappers/http'
import { event } from './wrappers/event'
import { image } from './wrappers/image'
import { socket } from './wrappers/socket'
import { file } from './wrappers/file'
import { record } from './wrappers/record'
import { voice } from './wrappers/voice'
import { audio } from './wrappers/audio'
import { video } from './wrappers/video'
import { storage } from './wrappers/storage'
import { location } from './wrappers/storage'
import { device } from './wrappers/device'
import { user } from './wrappers/user'
module.exports = {
xs: xs,
http: http,
event: event,
file: file,
image: image,
socket: socket,
record: record,
voice: voice,
audio: audio,
video: video,
storage: storage,
location: location,
device: device,
user: user,
debounce: debounce,
concat: concat,
dropRepeats: dropRepeats
}