dirigera
Version:
A TypeScript client for IKEA's DIRIGERA smart home hub
10 lines (9 loc) • 330 B
TypeScript
import type { Got } from 'got' with { 'resolution-mode': 'require' };
import type { EnvironmentSensor } from '../types/device/EnvironmentSensor';
declare const _default: (got: Got) => {
list(): Promise<EnvironmentSensor[]>;
get({ id }: {
id: string;
}): Promise<EnvironmentSensor>;
};
export default _default;