You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
966 B
34 lines
966 B
8 years ago
|
/// <reference path="../../includes.d.ts" />
|
||
|
/// <reference path="developerPlugin.d.ts" />
|
||
|
declare module Developer {
|
||
|
class OptionsParams {
|
||
|
pagerSizeOption: number[];
|
||
|
dataType: any;
|
||
|
currentTableSize: number;
|
||
|
dataBatch: any;
|
||
|
labels: {};
|
||
|
currentPageNum: number;
|
||
|
totalSize: any;
|
||
|
priorTableSize: number;
|
||
|
createParamData(): {
|
||
|
currentPageNum: number;
|
||
|
dataType: any;
|
||
|
submittedBatch: any;
|
||
|
limit: number;
|
||
|
priorTableSize: number;
|
||
|
};
|
||
|
getPageSizeNum(): number;
|
||
|
}
|
||
|
class DataModelService {
|
||
|
data: any[];
|
||
|
paramOptions: any;
|
||
|
constructor();
|
||
|
protected getDataModel(paramOptions: any): any;
|
||
|
initParamOptions(): void;
|
||
|
updateModel(): void;
|
||
|
maybeFormat(): void;
|
||
|
updateParamOption(option: string, value: any): void;
|
||
|
getParamOption(key: string): any;
|
||
|
}
|
||
|
}
|