mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
9 lines
No EOL
194 B
TypeScript
9 lines
No EOL
194 B
TypeScript
namespace com.keyman.osk {
|
|
export interface KeyTip {
|
|
key: KeyElement;
|
|
state: boolean;
|
|
element?: HTMLDivElement;
|
|
|
|
show(key: KeyElement, on: boolean, vkbd: VisualKeyboard);
|
|
}
|
|
} |