From a4de39ab3e9211e59ca8e176144fe15a1ace808e Mon Sep 17 00:00:00 2001 From: sintetico82 Date: Sun, 26 Aug 2018 21:32:43 +0200 Subject: [PATCH] Added method to LCD class Added two method to LCD class: * noBacklight(): void; * backlight(): void; --- types/johnny-five/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/johnny-five/index.d.ts b/types/johnny-five/index.d.ts index 5f0f6a9f37..eafa4038de 100644 --- a/types/johnny-five/index.d.ts +++ b/types/johnny-five/index.d.ts @@ -378,6 +378,8 @@ export declare class LCD { autoscroll(): void; noAutoscroll(): void; bgColor(color: any): void; + noBacklight(): void; + backlight(): void; } export interface LedOption {