@asi-ngtools/lib
Version:
This project is a little components library, simple to use, which will help you to simplify your project.
16 lines (15 loc) • 599 B
TypeScript
import { DefaultControlValueAccessor } from './../common/default-control-value-accessor';
import { NgZone, OnInit, OnDestroy, AfterViewInit } from '@angular/core';
export declare class AsiTinyMCE extends DefaultControlValueAccessor implements OnInit, AfterViewInit, OnDestroy {
private zone;
class: string;
label: string;
labelPosition: 'top' | 'left' | 'right' | 'bottom' | 'bottom-center' | 'top-center';
elementId: string;
editor: any;
constructor(zone: NgZone);
ngOnInit(): void;
ngAfterViewInit(): void;
onModelChange(): void;
ngOnDestroy(): void;
}