mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-11 11:25:34 +00:00
10 lines
No EOL
210 B
TypeScript
10 lines
No EOL
210 B
TypeScript
namespace com.keyman.osk {
|
|
export interface GlobeHint {
|
|
text: string;
|
|
state: boolean;
|
|
element?: HTMLDivElement;
|
|
|
|
show(key: KeyElement, onDismiss?: () => void);
|
|
hide(key: KeyElement);
|
|
}
|
|
} |