UNPKG

@iotile/iotile-cloud

Version:

A typescript library for interfacing with the IOTile Cloud API

16 lines (15 loc) 313 B
export interface PropertyDictionary { [index: string]: Property; } export declare class Property { id?: number; name: string; value: string; type: string; isSystem: boolean; target?: string; rawData: any; constructor(data: any); toJson(): any; getPostPayload(): any; }