angular-onscreen-material-keyboard
Version:
This package is forked from ngx-material-keyboard with bug fixes and additional features
22 lines (21 loc) • 764 B
TypeScript
import { ElementRef, EventEmitter, OnDestroy } from '@angular/core';
import { NgControl } from '@angular/forms';
import { MatKeyboardService } from '../services/keyboard.service';
export declare class MatKeyboardDirective implements OnDestroy {
private _elementRef;
private _keyboardService;
private _control?;
private _keyboardRef;
matKeyboard: string;
darkTheme: boolean;
duration: number;
isDebug: boolean;
enterClick: EventEmitter<void>;
capsClick: EventEmitter<void>;
altClick: EventEmitter<void>;
shiftClick: EventEmitter<void>;
constructor(_elementRef: ElementRef, _keyboardService: MatKeyboardService, _control?: NgControl);
ngOnDestroy(): void;
showKeyboard(): void;
hideKeyboard(): void;
}