forked from ably/spaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
31 lines (23 loc) · 948 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
import Spaces from './Spaces.js';
export type { default as Space, SpaceEventMap, SpaceEvents, SpaceState, UpdateProfileDataFunction } from './Space.js';
export type { default as Cursors, CursorsEventMap } from './Cursors.js';
export type { default as Locations, LocationsEventMap, LocationsEvents } from './Locations.js';
export type { default as Locks, LocksEventMap, LockOptions } from './Locks.js';
export type { default as Members, MembersEventMap } from './Members.js';
// Can be changed to * when we update to TS5
export default Spaces;
export type {
CursorsOptions,
CursorPosition,
CursorData,
CursorUpdate,
SpaceOptions,
ProfileData,
SpaceMember,
Lock,
LockStatus,
LockStatuses,
} from './types.js';
export type { LockAttributes } from './Locks.js';
export type { default as EventEmitter, EventListener, EventListenerThis } from './utilities/EventEmitter.js';
export type { Subset } from './utilities/types.js';