UNPKG

workspace-integrations

Version:
10 lines (9 loc) 279 B
import { Devices, Http } from '../types'; declare class DevicesImpl implements Devices { private http; private cache; constructor(http: Http); getDevices(filters?: any): Promise<any[]>; getDevice(deviceId: string): Promise<any>; } export default DevicesImpl;