UNPKG

ionic-mathlive

Version:
20 lines (19 loc) 632 B
import { ElementRef, OnInit, EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; export declare class IonMathliveComponent implements OnInit, ControlValueAccessor { mathfield: ElementRef; answer: any; disabled: boolean; onValueChange: EventEmitter<any>; onChange: any; onTouched: any; constructor(); ngAfterViewInit(): void; ngOnInit(): void; get value(): any; set value(val: any); registerOnChange(fn: any): void; registerOnTouched(fn: any): void; writeValue: (mathfield: any) => void; setDisabledState(disabled: boolean): void; }