UNPKG

@teachingtextbooks/keyboard

Version:

Customizable TypeScript soft keyboard

8 lines (7 loc) 304 B
import { IKeyConfig } from "./data"; import KeyBtnAbstr from "./key-btn-abstr"; export default class KeyBtnBase extends KeyBtnAbstr { private readonly label; constructor(win: Window, doc: Document, config: IKeyConfig, holder: Element, callback: Function); protected getClasses(): string[]; }