UNPKG

ng2-ace-editor

Version:

Ace editor integration with typescript for angular 2.

25 lines (24 loc) 606 B
import { EventEmitter, ElementRef } from '@angular/core'; import 'brace'; import 'brace/theme/monokai'; import 'brace/mode/html'; export declare class AceEditorDirective { textChanged: EventEmitter<{}>; _options: any; _readOnly: boolean; _theme: string; _mode: string; _autoUpdateContent: boolean; editor: any; oldText: any; constructor(elementRef: ElementRef); init(): void; initEvents(): void; options: any; readOnly: any; theme: any; mode: any; text: any; autoUpdateContent: any; readonly aceEditor: any; }