Skip to content

Commit

Permalink
Export types. Fixes #865
Browse files Browse the repository at this point in the history
  • Loading branch information
hodgef committed Jan 13, 2021
1 parent 852d304 commit eb7d8df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build/*
build/*
/**/*.d.ts
8 changes: 4 additions & 4 deletions src/lib/@types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
declare module 'simple-keyboard' {
interface KeyboardLayoutObject {
export interface KeyboardLayoutObject {
[key: string]: string[];
}

interface KeyboardButtonTheme {
export interface KeyboardButtonTheme {
class: string;
buttons: string;
}

interface KeyboardButtonAttributes {
export interface KeyboardButtonAttributes {
attribute: string;
value: string;
buttons: string;
}

interface KeyboardOptions {
export interface KeyboardOptions {
/**
* Modify the keyboard layout.
*/
Expand Down

0 comments on commit eb7d8df

Please sign in to comment.