dirigera
Version:
A TypeScript client for IKEA's DIRIGERA smart home hub
18 lines (17 loc) • 516 B
TypeScript
import type { Got } from 'got';
import type { Blinds } from '../types/device/Blinds.ts';
declare const _default: (got: Got) => {
list(): Promise<Blinds[]>;
get({ id }: {
id: string;
}): Promise<Blinds>;
setTargetLevel({ id, blindsTargetLevel, }: {
id: string;
blindsTargetLevel: number;
}): Promise<void>;
setState({ id, blindsState, }: {
id: string;
blindsState: Blinds["attributes"]["blindsState"];
}): Promise<void>;
};
export default _default;