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
38
|
import { OnInit } from '@angular/core';
import { AppConfigService } from '../app-config/app-config.service';
import { DxDataGridComponent } from 'devextreme-angular';
import { Request } from '../_services/request.service';
import { Common } from '../_services/common.service';
import { ModalStepViewComponent } from '../modal-step-view/modal-step-view.component';
import { B2bService } from '../_services/b2b.service';
export declare class StepListComponent implements OnInit {
private appConfigService;
private request;
common: Common;
private b2b;
mode: 'CREATE' | 'EDIT' | 'VIEW';
option: any;
dxDataGridStepList: DxDataGridComponent;
modalStepView: ModalStepViewComponent;
columns: string[];
stepList: any;
th: any;
dxgridPageSize: number;
allowedPageSizes1: number;
allowedPageSizes2: number;
allowedPageSizes3: number;
allowedPageSizes4: number;
customers: any[];
url: any;
lastStep: string;
config: any;
downloadToken: any;
constructor(appConfigService: AppConfigService, request: Request, common: Common, b2b: B2bService);
ngOnInit(): void;
getStepList(): Promise<void>;
addStepList(data: any): void;
getRowIndex(data: any): any;
view(data: any): void;
getLastStep(): string;
onCellPrepared(e: any): void;
}
|