Fix return type for blinking instantiation function

Change-type: patch
Signed-off-by: Cameron Diver <cameron@balena.io>
This commit is contained in:
Cameron Diver 2018-11-27 13:41:43 +00:00
parent 981d232a38
commit 56041b98ae
No known key found for this signature in database
GPG Key ID: 49690ED87032539F

View File

@ -11,7 +11,7 @@ declare module 'blinking' {
stop: () => void; stop: () => void;
} }
function blinking(ledFile: string): Blink; function blinking(ledFile: string): { pattern: Blink };
export = blinking; export = blinking;
} }