SimpleBLE characteristic.

interface Characteristic {
    canIndicate: boolean;
    canNotify: boolean;
    canRead: boolean;
    canWriteCommand: boolean;
    canWriteRequest: boolean;
    descriptors: string[];
    uuid: string;
}

Properties

canIndicate: boolean
canNotify: boolean
canRead: boolean
canWriteCommand: boolean
canWriteRequest: boolean
descriptors: string[]
uuid: string