Blame view

lib/modal-spell-check/modal-spell-check.component.d.ts 920 Bytes
75f29219   Anan Sangthongtum   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { EventEmitter, OnInit } from '@angular/core';
import { Request } from '../_services/request.service';
import { Common } from '../_services/common.service';
import { HttpClient } from '@angular/common/http';
import { ModalDirective } from 'ngx-bootstrap';
import { AppConfigService } from '../app-config/app-config.service';
export declare class ModalSpellCheckComponent implements OnInit {
    private appConfigService;
    private request;
    common: Common;
    private http;
    modal: ModalDirective;
    onSave: EventEmitter<{}>;
    objectKeys: (o: {}) => string[];
    config: any;
    spellCheck: any;
    model: any;
    enableList: any;
    isEdit: boolean;
    constructor(appConfigService: AppConfigService, request: Request, common: Common, http: HttpClient);
    ngOnInit(): void;
    open(data?: any): Promise<void>;
    closeModal(): void;
    enableEdit(i: any): void;
    saveModal(): void;
}