From f9d594b8a09065f26d69e9ea9576697e5281a538 Mon Sep 17 00:00:00 2001 From: Francisco Hodge Date: Tue, 9 Apr 2019 20:27:19 -0400 Subject: [PATCH] Updated types --- package.json | 2 +- src/lib/@types/index.d.ts | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 3aadc561..81ed9e4e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-keyboard", - "version": "2.20.3", + "version": "2.20.4", "description": "On-screen Javascript Virtual Keyboard", "main": "build/index.js", "types": "build/index.d.ts", diff --git a/src/lib/@types/index.d.ts b/src/lib/@types/index.d.ts index 07d37f87..21065659 100644 --- a/src/lib/@types/index.d.ts +++ b/src/lib/@types/index.d.ts @@ -2,6 +2,7 @@ declare module 'simple-keyboard' { interface KeyboardLayoutObject { default: string[]; shift?: string[]; + [key: string]: string[]; } interface KeyboardButtonTheme { @@ -10,11 +11,6 @@ declare module 'simple-keyboard' { } interface KeyboardOptions { - /** - * Utilities - */ - utilities?: any; - /** * Modify the keyboard layout. */ @@ -172,6 +168,11 @@ declare module 'simple-keyboard' { constructor(options: KeyboardOptions); options: KeyboardOptions; + /** + * Utilities + */ + utilities?: any; + /** * Adds/Modifies an entry to the `buttonTheme`. Basically a way to add a class to a button. * @param {string} buttons List of buttons to select (separated by a space).