spiegel-keyman/web/source/osk/globehint.interface.ts
2022-11-17 09:58:26 +07:00

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);
}
}