@jstark/tplink-smarthome-api
    Preparing search index...

    Interface Lighting

    interface Lighting {
        get lightState(): LightState;
        getLightDetails(sendOptions?: SendOptions): Promise<unknown>;
        getLightState(sendOptions?: SendOptions): Promise<LightState>;
        setLightState(
            lightState: LightStateInput,
            sendOptions?: SendOptions,
        ): Promise<true>;
    }
    Index