forked from abandonware/noble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
168 lines (146 loc) · 7.94 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
// Type definitions for noble
// Project: https://github.com/sandeepmistry/noble
// Definitions by: Seon-Wook Park <https://github.com/swook>
// Shantanu Bhadoria <https://github.com/shantanubhadoria>
// Luke Libraro <https://github.com/lukel99>
// Dan Chao <https://github.com/bioball>
// Michal Lower <https://github.com/keton>
// Rob Moran <https://github.com/thegecko>
// Clayton Kucera <https://github.com/claytonkucera>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
import events = require("events");
/**
* @deprecated
*/
export declare function startScanning(callback?: (error?: Error) => void): void;
/**
* @deprecated
*/
export declare function startScanning(serviceUUIDs: string[], callback?: (error?: Error) => void): void;
export declare function startScanning(serviceUUIDs?: string[], allowDuplicates?: boolean, callback?: (error?: Error) => void): void;
export declare function startScanningAsync(serviceUUIDs?: string[], allowDuplicates?: boolean): Promise<void>;
export declare function stopScanning(callback?: () => void): void;
export declare function stopScanningAsync(): Promise<void>;
export declare function on(event: "stateChange", listener: (state: string) => void): events.EventEmitter;
export declare function on(event: "scanStart", listener: () => void): events.EventEmitter;
export declare function on(event: "scanStop", listener: () => void): events.EventEmitter;
export declare function on(event: "discover", listener: (peripheral: Peripheral) => void): events.EventEmitter;
export declare function on(event: string, listener: Function): events.EventEmitter;
export declare function removeListener(event: "stateChange", listener: (state: string) => void): events.EventEmitter;
export declare function removeListener(event: "scanStart", listener: () => void): events.EventEmitter;
export declare function removeListener(event: "scanStop", listener: () => void): events.EventEmitter;
export declare function removeListener(event: "discover", listener: (peripheral: Peripheral) => void): events.EventEmitter;
export declare function removeListener(event: string, listener: Function): events.EventEmitter;
export declare function removeAllListeners(event?: string): events.EventEmitter;
export declare var state: string;
export interface ServicesAndCharacteristics {
services: Service[];
characteristics: Characteristic[];
}
export declare class Peripheral extends events.EventEmitter {
id: string;
uuid: string;
address: string;
addressType: string;
connectable: boolean;
advertisement: Advertisement;
rssi: number;
services: Service[];
state: 'error' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';
connect(callback?: (error: string) => void): void;
connectAsync(): Promise<void>;
disconnect(callback?: () => void): void;
disconnectAsync(): Promise<void>;
updateRssi(callback?: (error: string, rssi: number) => void): void;
updateRssiAsync(): Promise<number>;
discoverServices(): void;
discoverServicesAsync(): Promise<Service[]>;
discoverServices(serviceUUIDs: string[], callback?: (error: string, services: Service[]) => void): void;
discoverServicesAsync(serviceUUIDs: string[]): Promise<Service[]>;
discoverAllServicesAndCharacteristics(callback?: (error: string, services: Service[], characteristics: Characteristic[]) => void): void;
discoverAllServicesAndCharacteristicsAsync(): Promise<ServicesAndCharacteristics>;
discoverSomeServicesAndCharacteristics(serviceUUIDs: string[], characteristicUUIDs: string[], callback?: (error: string, services: Service[], characteristics: Characteristic[]) => void): void;
discoverSomeServicesAndCharacteristicsAsync(serviceUUIDs: string[], characteristicUUIDs: string[]): Promise<ServicesAndCharacteristics>;
readHandle(handle: Buffer, callback: (error: string, data: Buffer) => void): void;
readHandleAsync(handle: Buffer): Promise<Buffer>;
writeHandle(handle: Buffer, data: Buffer, withoutResponse: boolean, callback: (error: string) => void): void;
writeHandleAsync(handle: Buffer, data: Buffer, withoutResponse: boolean): Promise<void>;
toString(): string;
on(event: "connect", listener: (error: string) => void): this;
on(event: "disconnect", listener: (error: string) => void): this;
on(event: "rssiUpdate", listener: (rssi: number) => void): this;
on(event: "servicesDiscover", listener: (services: Service[]) => void): this;
on(event: string, listener: Function): this;
}
export interface Advertisement {
localName: string;
serviceData: Array<{
uuid: string,
data: Buffer
}>;
txPowerLevel: number;
manufacturerData: Buffer;
serviceUuids: string[];
}
export declare class Service extends events.EventEmitter {
uuid: string;
name: string;
type: string;
includedServiceUuids: string[];
characteristics: Characteristic[];
discoverIncludedServices(): void;
discoverIncludedServicesAsync(): Promise<string[]>;
discoverIncludedServices(serviceUUIDs: string[], callback?: (error: string, includedServiceUuids: string[]) => void): void;
discoverIncludedServicesAsync(serviceUUIDs: string[]): Promise<string[]>;
discoverCharacteristics(): void;
discoverCharacteristicsAsync(): Promise<Characteristic[]>;
discoverCharacteristics(characteristicUUIDs: string[], callback?: (error: string, characteristics: Characteristic[]) => void): void;
discoverCharacteristicsAsync(characteristicUUIDs: string[]): Promise<Characteristic[]>;
toString(): string;
on(event: "includedServicesDiscover", listener: (includedServiceUuids: string[]) => void): this;
on(event: "characteristicsDiscover", listener: (characteristics: Characteristic[]) => void): this;
on(event: string, listener: Function): this;
}
export declare class Characteristic extends events.EventEmitter {
uuid: string;
name: string;
type: string;
properties: string[];
descriptors: Descriptor[];
read(callback?: (error: string, data: Buffer) => void): void;
readAsync(): Promise<Buffer>;
write(data: Buffer, notify: boolean, callback?: (error: string) => void): void;
writeAsync(data: Buffer, notify: boolean): Promise<void>;
broadcast(broadcast: boolean, callback?: (error: string) => void): void;
broadcastAsync(broadcast: boolean): Promise<void>;
notify(notify: boolean, callback?: (error: string) => void): void;
notifyAsync(notify: boolean): Promise<void>;
discoverDescriptors(callback?: (error: string, descriptors: Descriptor[]) => void): void;
discoverDescriptorsAsync(): Promise<Descriptor[]>;
toString(): string;
subscribe(callback?: (error: string) => void): void;
subscribeAsync(): Promise<void>;
unsubscribe(callback?: (error: string) => void): void;
unsubscribeAsync(): Promise<void>;
on(event: "read", listener: (data: Buffer, isNotification: boolean) => void): this;
on(event: "write", withoutResponse: boolean, listener: (error: string) => void): this;
on(event: "broadcast", listener: (state: string) => void): this;
on(event: "notify", listener: (state: string) => void): this;
on(event: "descriptorsDiscover", listener: (descriptors: Descriptor[]) => void): this;
on(event: string, listener: Function): this;
on(event: string, option: boolean, listener: Function): this;
}
export declare class Descriptor extends events.EventEmitter {
uuid: string;
name: string;
type: string;
readValue(callback?: (error: string, data: Buffer) => void): void;
readValueAsync(): Promise<Buffer>;
writeValue(data: Buffer, callback?: (error: string) => void): void;
writeValueAsync(data: Buffer): Promise<void>;
toString(): string;
on(event: "valueRead", listener: (error: string, data: Buffer) => void): this;
on(event: "valueWrite", listener: (error: string) => void): this;
on(event: string, listener: Function): this;
}