js-draw
Version:
Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.
10 lines (9 loc) • 337 B
TypeScript
import Editor from '../../Editor';
import { KeyPressEvent } from '../../inputEvents';
import BaseTool from '../BaseTool';
export default class SelectAllShortcutHandler extends BaseTool {
private editor;
constructor(editor: Editor);
canReceiveInputInReadOnlyEditor(): boolean;
onKeyPress(event: KeyPressEvent): boolean;
}