ionic-mathlive
Version:
A Ionic-mathlive math.
20 lines (19 loc) • 632 B
TypeScript
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;
}