Blame view

lib/modal-step-view/modal-step-view.component.d.ts 1.07 KB
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
27
28
29
30
31
32
33
34
35
36
37
import { EventEmitter, OnInit } from '@angular/core';
import { ModalOptions, ModalDirective } from 'ngx-bootstrap';
import { Common } from '../_services/common.service';
import { Request } from '../_services/request.service';
export declare class ModalStepViewComponent implements OnInit {
    private request;
    common: Common;
    onUpdateModal: EventEmitter<{}>;
    modal: ModalDirective;
    submitted: boolean;
    title: any;
    selectList: any;
    list: any;
    modalConfig: ModalOptions;
    th: any;
    selectedStep: any;
    isMore: boolean;
    moreField: any;
    config: any;
    stepData: any;
    lastStep: string;
    stepName: string;
    isSend: boolean;
    isRecieve: boolean;
    sendList: any;
    recieveList: any;
    downloadToken: any;
    constructor(request: Request, common: Common);
    ngOnInit(): void;
    open(options?: any): Promise<void>;
    closeModal(): void;
    getFieldId(data: any): string;
    getRowIndex(data: any): any;
    onCellPrepared(e: any): void;
    isImportant(data: any): "" | "สำคัญ";
    getImageLink(data: any): string;
}