mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
633 lines
16 KiB
TypeScript
633 lines
16 KiB
TypeScript
|
|
declare const enum CBATTError {
|
|
|
|
Success = 0,
|
|
|
|
InvalidHandle = 1,
|
|
|
|
ReadNotPermitted = 2,
|
|
|
|
WriteNotPermitted = 3,
|
|
|
|
InvalidPdu = 4,
|
|
|
|
InsufficientAuthentication = 5,
|
|
|
|
RequestNotSupported = 6,
|
|
|
|
InvalidOffset = 7,
|
|
|
|
InsufficientAuthorization = 8,
|
|
|
|
PrepareQueueFull = 9,
|
|
|
|
AttributeNotFound = 10,
|
|
|
|
AttributeNotLong = 11,
|
|
|
|
InsufficientEncryptionKeySize = 12,
|
|
|
|
InvalidAttributeValueLength = 13,
|
|
|
|
UnlikelyError = 14,
|
|
|
|
InsufficientEncryption = 15,
|
|
|
|
UnsupportedGroupType = 16,
|
|
|
|
InsufficientResources = 17
|
|
}
|
|
|
|
declare var CBATTErrorDomain: string;
|
|
|
|
declare class CBATTRequest extends NSObject {
|
|
|
|
static alloc(): CBATTRequest; // inherited from NSObject
|
|
|
|
static new(): CBATTRequest; // inherited from NSObject
|
|
|
|
readonly central: CBCentral;
|
|
|
|
readonly characteristic: CBCharacteristic;
|
|
|
|
readonly offset: number;
|
|
|
|
value: NSData;
|
|
}
|
|
|
|
declare var CBAdvertisementDataIsConnectable: string;
|
|
|
|
declare var CBAdvertisementDataLocalNameKey: string;
|
|
|
|
declare var CBAdvertisementDataManufacturerDataKey: string;
|
|
|
|
declare var CBAdvertisementDataOverflowServiceUUIDsKey: string;
|
|
|
|
declare var CBAdvertisementDataServiceDataKey: string;
|
|
|
|
declare var CBAdvertisementDataServiceUUIDsKey: string;
|
|
|
|
declare var CBAdvertisementDataSolicitedServiceUUIDsKey: string;
|
|
|
|
declare var CBAdvertisementDataTxPowerLevelKey: string;
|
|
|
|
declare class CBAttribute extends NSObject {
|
|
|
|
static alloc(): CBAttribute; // inherited from NSObject
|
|
|
|
static new(): CBAttribute; // inherited from NSObject
|
|
|
|
readonly UUID: CBUUID;
|
|
}
|
|
|
|
declare const enum CBAttributePermissions {
|
|
|
|
Readable = 1,
|
|
|
|
Writeable = 2,
|
|
|
|
ReadEncryptionRequired = 4,
|
|
|
|
WriteEncryptionRequired = 8
|
|
}
|
|
|
|
declare class CBCentral extends CBPeer {
|
|
|
|
static alloc(): CBCentral; // inherited from NSObject
|
|
|
|
static new(): CBCentral; // inherited from NSObject
|
|
|
|
readonly maximumUpdateValueLength: number;
|
|
}
|
|
|
|
declare class CBCentralManager extends CBManager {
|
|
|
|
static alloc(): CBCentralManager; // inherited from NSObject
|
|
|
|
static new(): CBCentralManager; // inherited from NSObject
|
|
|
|
delegate: CBCentralManagerDelegate;
|
|
|
|
readonly isScanning: boolean;
|
|
|
|
constructor(o: { delegate: CBCentralManagerDelegate; queue: NSObject; });
|
|
|
|
constructor(o: { delegate: CBCentralManagerDelegate; queue: NSObject; options: NSDictionary<string, any>; });
|
|
|
|
cancelPeripheralConnection(peripheral: CBPeripheral): void;
|
|
|
|
connectPeripheralOptions(peripheral: CBPeripheral, options: NSDictionary<string, any>): void;
|
|
|
|
initWithDelegateQueue(delegate: CBCentralManagerDelegate, queue: NSObject): this;
|
|
|
|
initWithDelegateQueueOptions(delegate: CBCentralManagerDelegate, queue: NSObject, options: NSDictionary<string, any>): this;
|
|
|
|
retrieveConnectedPeripheralsWithServices(serviceUUIDs: NSArray<CBUUID>): NSArray<CBPeripheral>;
|
|
|
|
retrievePeripheralsWithIdentifiers(identifiers: NSArray<NSUUID>): NSArray<CBPeripheral>;
|
|
|
|
scanForPeripheralsWithServicesOptions(serviceUUIDs: NSArray<CBUUID>, options: NSDictionary<string, any>): void;
|
|
|
|
stopScan(): void;
|
|
}
|
|
|
|
interface CBCentralManagerDelegate extends NSObjectProtocol {
|
|
|
|
centralManagerDidConnectPeripheral?(central: CBCentralManager, peripheral: CBPeripheral): void;
|
|
|
|
centralManagerDidDisconnectPeripheralError?(central: CBCentralManager, peripheral: CBPeripheral, error: NSError): void;
|
|
|
|
centralManagerDidDiscoverPeripheralAdvertisementDataRSSI?(central: CBCentralManager, peripheral: CBPeripheral, advertisementData: NSDictionary<string, any>, RSSI: number): void;
|
|
|
|
centralManagerDidFailToConnectPeripheralError?(central: CBCentralManager, peripheral: CBPeripheral, error: NSError): void;
|
|
|
|
centralManagerDidUpdateState(central: CBCentralManager): void;
|
|
|
|
centralManagerWillRestoreState?(central: CBCentralManager, dict: NSDictionary<string, any>): void;
|
|
}
|
|
declare var CBCentralManagerDelegate: {
|
|
|
|
prototype: CBCentralManagerDelegate;
|
|
};
|
|
|
|
declare var CBCentralManagerOptionRestoreIdentifierKey: string;
|
|
|
|
declare var CBCentralManagerOptionShowPowerAlertKey: string;
|
|
|
|
declare var CBCentralManagerRestoredStatePeripheralsKey: string;
|
|
|
|
declare var CBCentralManagerRestoredStateScanOptionsKey: string;
|
|
|
|
declare var CBCentralManagerRestoredStateScanServicesKey: string;
|
|
|
|
declare var CBCentralManagerScanOptionAllowDuplicatesKey: string;
|
|
|
|
declare var CBCentralManagerScanOptionSolicitedServiceUUIDsKey: string;
|
|
|
|
declare const enum CBCentralManagerState {
|
|
|
|
Unknown = 0,
|
|
|
|
Resetting = 1,
|
|
|
|
Unsupported = 2,
|
|
|
|
Unauthorized = 3,
|
|
|
|
PoweredOff = 4,
|
|
|
|
PoweredOn = 5
|
|
}
|
|
|
|
declare class CBCharacteristic extends CBAttribute {
|
|
|
|
static alloc(): CBCharacteristic; // inherited from NSObject
|
|
|
|
static new(): CBCharacteristic; // inherited from NSObject
|
|
|
|
readonly descriptors: NSArray<CBDescriptor>;
|
|
|
|
readonly isBroadcasted: boolean;
|
|
|
|
readonly isNotifying: boolean;
|
|
|
|
readonly properties: CBCharacteristicProperties;
|
|
|
|
readonly service: CBService;
|
|
|
|
readonly value: NSData;
|
|
}
|
|
|
|
declare const enum CBCharacteristicProperties {
|
|
|
|
PropertyBroadcast = 1,
|
|
|
|
PropertyRead = 2,
|
|
|
|
PropertyWriteWithoutResponse = 4,
|
|
|
|
PropertyWrite = 8,
|
|
|
|
PropertyNotify = 16,
|
|
|
|
PropertyIndicate = 32,
|
|
|
|
PropertyAuthenticatedSignedWrites = 64,
|
|
|
|
PropertyExtendedProperties = 128,
|
|
|
|
PropertyNotifyEncryptionRequired = 256,
|
|
|
|
PropertyIndicateEncryptionRequired = 512
|
|
}
|
|
|
|
declare const enum CBCharacteristicWriteType {
|
|
|
|
WithResponse = 0,
|
|
|
|
WithoutResponse = 1
|
|
}
|
|
|
|
declare var CBConnectPeripheralOptionNotifyOnConnectionKey: string;
|
|
|
|
declare var CBConnectPeripheralOptionNotifyOnDisconnectionKey: string;
|
|
|
|
declare var CBConnectPeripheralOptionNotifyOnNotificationKey: string;
|
|
|
|
declare class CBDescriptor extends CBAttribute {
|
|
|
|
static alloc(): CBDescriptor; // inherited from NSObject
|
|
|
|
static new(): CBDescriptor; // inherited from NSObject
|
|
|
|
readonly characteristic: CBCharacteristic;
|
|
|
|
readonly value: any;
|
|
}
|
|
|
|
declare const enum CBError {
|
|
|
|
Unknown = 0,
|
|
|
|
InvalidParameters = 1,
|
|
|
|
InvalidHandle = 2,
|
|
|
|
NotConnected = 3,
|
|
|
|
OutOfSpace = 4,
|
|
|
|
OperationCancelled = 5,
|
|
|
|
ConnectionTimeout = 6,
|
|
|
|
PeripheralDisconnected = 7,
|
|
|
|
UUIDNotAllowed = 8,
|
|
|
|
AlreadyAdvertising = 9,
|
|
|
|
ConnectionFailed = 10,
|
|
|
|
ConnectionLimitReached = 11,
|
|
|
|
UnkownDevice = 12
|
|
}
|
|
|
|
declare var CBErrorDomain: string;
|
|
|
|
declare class CBL2CAPChannel extends NSObject {
|
|
|
|
static alloc(): CBL2CAPChannel; // inherited from NSObject
|
|
|
|
static new(): CBL2CAPChannel; // inherited from NSObject
|
|
|
|
readonly PSM: number;
|
|
|
|
readonly inputStream: NSInputStream;
|
|
|
|
readonly outputStream: NSOutputStream;
|
|
|
|
readonly peer: CBPeer;
|
|
}
|
|
|
|
declare class CBManager extends NSObject {
|
|
|
|
static alloc(): CBManager; // inherited from NSObject
|
|
|
|
static new(): CBManager; // inherited from NSObject
|
|
|
|
readonly state: CBManagerState;
|
|
}
|
|
|
|
declare const enum CBManagerState {
|
|
|
|
Unknown = 0,
|
|
|
|
Resetting = 1,
|
|
|
|
Unsupported = 2,
|
|
|
|
Unauthorized = 3,
|
|
|
|
PoweredOff = 4,
|
|
|
|
PoweredOn = 5
|
|
}
|
|
|
|
declare class CBMutableCharacteristic extends CBCharacteristic {
|
|
|
|
static alloc(): CBMutableCharacteristic; // inherited from NSObject
|
|
|
|
static new(): CBMutableCharacteristic; // inherited from NSObject
|
|
|
|
descriptors: NSArray<CBDescriptor>;
|
|
|
|
permissions: CBAttributePermissions;
|
|
|
|
properties: CBCharacteristicProperties;
|
|
|
|
readonly subscribedCentrals: NSArray<CBCentral>;
|
|
|
|
value: NSData;
|
|
|
|
constructor(o: { type: CBUUID; properties: CBCharacteristicProperties; value: NSData; permissions: CBAttributePermissions; });
|
|
|
|
initWithTypePropertiesValuePermissions(UUID: CBUUID, properties: CBCharacteristicProperties, value: NSData, permissions: CBAttributePermissions): this;
|
|
}
|
|
|
|
declare class CBMutableDescriptor extends CBDescriptor {
|
|
|
|
static alloc(): CBMutableDescriptor; // inherited from NSObject
|
|
|
|
static new(): CBMutableDescriptor; // inherited from NSObject
|
|
|
|
constructor(o: { type: CBUUID; value: any; });
|
|
|
|
initWithTypeValue(UUID: CBUUID, value: any): this;
|
|
}
|
|
|
|
declare class CBMutableService extends CBService {
|
|
|
|
static alloc(): CBMutableService; // inherited from NSObject
|
|
|
|
static new(): CBMutableService; // inherited from NSObject
|
|
|
|
characteristics: NSArray<CBCharacteristic>;
|
|
|
|
includedServices: NSArray<CBService>;
|
|
|
|
constructor(o: { type: CBUUID; primary: boolean; });
|
|
|
|
initWithTypePrimary(UUID: CBUUID, isPrimary: boolean): this;
|
|
}
|
|
|
|
declare class CBPeer extends NSObject implements NSCopying {
|
|
|
|
static alloc(): CBPeer; // inherited from NSObject
|
|
|
|
static new(): CBPeer; // inherited from NSObject
|
|
|
|
readonly identifier: NSUUID;
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
}
|
|
|
|
declare class CBPeripheral extends CBPeer {
|
|
|
|
static alloc(): CBPeripheral; // inherited from NSObject
|
|
|
|
static new(): CBPeripheral; // inherited from NSObject
|
|
|
|
readonly RSSI: number;
|
|
|
|
readonly canSendWriteWithoutResponse: boolean;
|
|
|
|
delegate: CBPeripheralDelegate;
|
|
|
|
readonly name: string;
|
|
|
|
readonly services: NSArray<CBService>;
|
|
|
|
readonly state: CBPeripheralState;
|
|
|
|
discoverCharacteristicsForService(characteristicUUIDs: NSArray<CBUUID>, service: CBService): void;
|
|
|
|
discoverDescriptorsForCharacteristic(characteristic: CBCharacteristic): void;
|
|
|
|
discoverIncludedServicesForService(includedServiceUUIDs: NSArray<CBUUID>, service: CBService): void;
|
|
|
|
discoverServices(serviceUUIDs: NSArray<CBUUID>): void;
|
|
|
|
maximumWriteValueLengthForType(type: CBCharacteristicWriteType): number;
|
|
|
|
openL2CAPChannel(PSM: number): void;
|
|
|
|
readRSSI(): void;
|
|
|
|
readValueForCharacteristic(characteristic: CBCharacteristic): void;
|
|
|
|
readValueForDescriptor(descriptor: CBDescriptor): void;
|
|
|
|
setNotifyValueForCharacteristic(enabled: boolean, characteristic: CBCharacteristic): void;
|
|
|
|
writeValueForCharacteristicType(data: NSData, characteristic: CBCharacteristic, type: CBCharacteristicWriteType): void;
|
|
|
|
writeValueForDescriptor(data: NSData, descriptor: CBDescriptor): void;
|
|
}
|
|
|
|
interface CBPeripheralDelegate extends NSObjectProtocol {
|
|
|
|
peripheralDidDiscoverCharacteristicsForServiceError?(peripheral: CBPeripheral, service: CBService, error: NSError): void;
|
|
|
|
peripheralDidDiscoverDescriptorsForCharacteristicError?(peripheral: CBPeripheral, characteristic: CBCharacteristic, error: NSError): void;
|
|
|
|
peripheralDidDiscoverIncludedServicesForServiceError?(peripheral: CBPeripheral, service: CBService, error: NSError): void;
|
|
|
|
peripheralDidDiscoverServices?(peripheral: CBPeripheral, error: NSError): void;
|
|
|
|
peripheralDidModifyServices?(peripheral: CBPeripheral, invalidatedServices: NSArray<CBService>): void;
|
|
|
|
peripheralDidOpenL2CAPChannelError?(peripheral: CBPeripheral, channel: CBL2CAPChannel, error: NSError): void;
|
|
|
|
peripheralDidReadRSSIError?(peripheral: CBPeripheral, RSSI: number, error: NSError): void;
|
|
|
|
peripheralDidUpdateName?(peripheral: CBPeripheral): void;
|
|
|
|
peripheralDidUpdateNotificationStateForCharacteristicError?(peripheral: CBPeripheral, characteristic: CBCharacteristic, error: NSError): void;
|
|
|
|
peripheralDidUpdateRSSIError?(peripheral: CBPeripheral, error: NSError): void;
|
|
|
|
peripheralDidUpdateValueForCharacteristicError?(peripheral: CBPeripheral, characteristic: CBCharacteristic, error: NSError): void;
|
|
|
|
peripheralDidUpdateValueForDescriptorError?(peripheral: CBPeripheral, descriptor: CBDescriptor, error: NSError): void;
|
|
|
|
peripheralDidWriteValueForCharacteristicError?(peripheral: CBPeripheral, characteristic: CBCharacteristic, error: NSError): void;
|
|
|
|
peripheralDidWriteValueForDescriptorError?(peripheral: CBPeripheral, descriptor: CBDescriptor, error: NSError): void;
|
|
|
|
peripheralIsReadyToSendWriteWithoutResponse?(peripheral: CBPeripheral): void;
|
|
}
|
|
declare var CBPeripheralDelegate: {
|
|
|
|
prototype: CBPeripheralDelegate;
|
|
};
|
|
|
|
declare class CBPeripheralManager extends CBManager {
|
|
|
|
static alloc(): CBPeripheralManager; // inherited from NSObject
|
|
|
|
static authorizationStatus(): CBPeripheralManagerAuthorizationStatus;
|
|
|
|
static new(): CBPeripheralManager; // inherited from NSObject
|
|
|
|
delegate: CBPeripheralManagerDelegate;
|
|
|
|
readonly isAdvertising: boolean;
|
|
|
|
constructor(o: { delegate: CBPeripheralManagerDelegate; queue: NSObject; });
|
|
|
|
constructor(o: { delegate: CBPeripheralManagerDelegate; queue: NSObject; options: NSDictionary<string, any>; });
|
|
|
|
addService(service: CBMutableService): void;
|
|
|
|
initWithDelegateQueue(delegate: CBPeripheralManagerDelegate, queue: NSObject): this;
|
|
|
|
initWithDelegateQueueOptions(delegate: CBPeripheralManagerDelegate, queue: NSObject, options: NSDictionary<string, any>): this;
|
|
|
|
publishL2CAPChannelWithEncryption(encryptionRequired: boolean): void;
|
|
|
|
removeAllServices(): void;
|
|
|
|
removeService(service: CBMutableService): void;
|
|
|
|
respondToRequestWithResult(request: CBATTRequest, result: CBATTError): void;
|
|
|
|
setDesiredConnectionLatencyForCentral(latency: CBPeripheralManagerConnectionLatency, central: CBCentral): void;
|
|
|
|
startAdvertising(advertisementData: NSDictionary<string, any>): void;
|
|
|
|
stopAdvertising(): void;
|
|
|
|
unpublishL2CAPChannel(PSM: number): void;
|
|
|
|
updateValueForCharacteristicOnSubscribedCentrals(value: NSData, characteristic: CBMutableCharacteristic, centrals: NSArray<CBCentral>): boolean;
|
|
}
|
|
|
|
declare const enum CBPeripheralManagerAuthorizationStatus {
|
|
|
|
NotDetermined = 0,
|
|
|
|
Restricted = 1,
|
|
|
|
Denied = 2,
|
|
|
|
Authorized = 3
|
|
}
|
|
|
|
declare const enum CBPeripheralManagerConnectionLatency {
|
|
|
|
Low = 0,
|
|
|
|
Medium = 1,
|
|
|
|
High = 2
|
|
}
|
|
|
|
interface CBPeripheralManagerDelegate extends NSObjectProtocol {
|
|
|
|
peripheralManagerCentralDidSubscribeToCharacteristic?(peripheral: CBPeripheralManager, central: CBCentral, characteristic: CBCharacteristic): void;
|
|
|
|
peripheralManagerCentralDidUnsubscribeFromCharacteristic?(peripheral: CBPeripheralManager, central: CBCentral, characteristic: CBCharacteristic): void;
|
|
|
|
peripheralManagerDidAddServiceError?(peripheral: CBPeripheralManager, service: CBService, error: NSError): void;
|
|
|
|
peripheralManagerDidOpenL2CAPChannelError?(peripheral: CBPeripheralManager, channel: CBL2CAPChannel, error: NSError): void;
|
|
|
|
peripheralManagerDidPublishL2CAPChannelError?(peripheral: CBPeripheralManager, PSM: number, error: NSError): void;
|
|
|
|
peripheralManagerDidReceiveReadRequest?(peripheral: CBPeripheralManager, request: CBATTRequest): void;
|
|
|
|
peripheralManagerDidReceiveWriteRequests?(peripheral: CBPeripheralManager, requests: NSArray<CBATTRequest>): void;
|
|
|
|
peripheralManagerDidStartAdvertisingError?(peripheral: CBPeripheralManager, error: NSError): void;
|
|
|
|
peripheralManagerDidUnpublishL2CAPChannelError?(peripheral: CBPeripheralManager, PSM: number, error: NSError): void;
|
|
|
|
peripheralManagerDidUpdateState(peripheral: CBPeripheralManager): void;
|
|
|
|
peripheralManagerIsReadyToUpdateSubscribers?(peripheral: CBPeripheralManager): void;
|
|
|
|
peripheralManagerWillRestoreState?(peripheral: CBPeripheralManager, dict: NSDictionary<string, any>): void;
|
|
}
|
|
declare var CBPeripheralManagerDelegate: {
|
|
|
|
prototype: CBPeripheralManagerDelegate;
|
|
};
|
|
|
|
declare var CBPeripheralManagerOptionRestoreIdentifierKey: string;
|
|
|
|
declare var CBPeripheralManagerOptionShowPowerAlertKey: string;
|
|
|
|
declare var CBPeripheralManagerRestoredStateAdvertisementDataKey: string;
|
|
|
|
declare var CBPeripheralManagerRestoredStateServicesKey: string;
|
|
|
|
declare const enum CBPeripheralManagerState {
|
|
|
|
Unknown = 0,
|
|
|
|
Resetting = 1,
|
|
|
|
Unsupported = 2,
|
|
|
|
Unauthorized = 3,
|
|
|
|
PoweredOff = 4,
|
|
|
|
PoweredOn = 5
|
|
}
|
|
|
|
declare const enum CBPeripheralState {
|
|
|
|
Disconnected = 0,
|
|
|
|
Connecting = 1,
|
|
|
|
Connected = 2,
|
|
|
|
Disconnecting = 3
|
|
}
|
|
|
|
declare class CBService extends CBAttribute {
|
|
|
|
static alloc(): CBService; // inherited from NSObject
|
|
|
|
static new(): CBService; // inherited from NSObject
|
|
|
|
readonly characteristics: NSArray<CBCharacteristic>;
|
|
|
|
readonly includedServices: NSArray<CBService>;
|
|
|
|
readonly isPrimary: boolean;
|
|
|
|
readonly peripheral: CBPeripheral;
|
|
}
|
|
|
|
declare class CBUUID extends NSObject implements NSCopying {
|
|
|
|
static UUIDWithCFUUID(theUUID: any): CBUUID;
|
|
|
|
static UUIDWithData(theData: NSData): CBUUID;
|
|
|
|
static UUIDWithNSUUID(theUUID: NSUUID): CBUUID;
|
|
|
|
static UUIDWithString(theString: string): CBUUID;
|
|
|
|
static alloc(): CBUUID; // inherited from NSObject
|
|
|
|
static new(): CBUUID; // inherited from NSObject
|
|
|
|
readonly UUIDString: string;
|
|
|
|
readonly data: NSData;
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
}
|
|
|
|
declare var CBUUIDCharacteristicAggregateFormatString: string;
|
|
|
|
declare var CBUUIDCharacteristicExtendedPropertiesString: string;
|
|
|
|
declare var CBUUIDCharacteristicFormatString: string;
|
|
|
|
declare var CBUUIDCharacteristicUserDescriptionString: string;
|
|
|
|
declare var CBUUIDCharacteristicValidRangeString: string;
|
|
|
|
declare var CBUUIDClientCharacteristicConfigurationString: string;
|
|
|
|
declare var CBUUIDL2CAPPSMCharacteristicString: string;
|
|
|
|
declare var CBUUIDServerCharacteristicConfigurationString: string;
|