-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex.d.ts
39 lines (34 loc) · 1.25 KB
/
index.d.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
type EventTypes = 'tempo' | 'numPeers' | 'playState';
type updateCallback = (beat:number, phase: number, bpm: number, playState: boolean) => any;
declare class AbletonLinkBase {
setBeatForce(beat: number): void
play(): void
stop(): void
getNumPeers(): number
enable(): void
disable(): void
enablePlayStateSync(): void
disablePlayStateSync(): void
update(): void
onTempoChanged(cb: Function): void
onNumPeersChanged(cb: Function): void
onPlayStateChanged(cb: Function): void
on(key: 'tempo', cb: (tempo: number) => any): void
on(key: 'numPeers', cb: (num_peers: number) => any): void
on(key: 'playState', cb: (play_state: boolean) => any): void
on(key: EventTypes, cb: Function): void
off(key: EventTypes, cb?: Function): void
// JavaScript
startUpdate(quantum: number, cb: updateCallback): void
startUpdate(interval_ms: number, cb?: updateCallback): void
stopUpdate(): void
};
export default class AbletonLink extends AbletonLinkBase {
constructor(bpm?: number, quantum?: number, enable?: boolean): AbletonLink;
};
class AbletonLinkAudio extends AbletonLinkBase {
constructor(bpm?: number, quantum?: number, enable?: boolean): AbletonLinkAudio;
};
declare namespace AbletonLink {
export const Audio: typeof AbletonLinkAudio;
}