@iotile/iotile-cloud
Version:
A typescript library for interfacing with the IOTile Cloud API
16 lines (15 loc) • 357 B
TypeScript
export declare class DeviceGlobalId {
id: number;
constructor(id: number);
/**
*
* This class represents a Device ID
* It helps converts a device id like 0x20 to a string slug of
* the form:
* d--XXXX-XXXX-XXXX-XXXX
*
* The slug always has the hex string in lowercase.
*
*/
toString(): string;
}