@ningboyz/types 1.4.106 → 1.4.108
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -49,6 +49,7 @@ import * as TResp from "./response";
|
|
|
49
49
|
import * as TAxios from "./axios";
|
|
50
50
|
import * as TFind from "./find";
|
|
51
51
|
import * as TTalk from "./talk";
|
|
52
|
+
import * as TStim from "./stim";
|
|
52
53
|
|
|
53
54
|
export {
|
|
54
55
|
Const,
|
|
@@ -100,6 +101,7 @@ export {
|
|
|
100
101
|
TAxios,
|
|
101
102
|
TFind,
|
|
102
103
|
TTalk,
|
|
104
|
+
TStim,
|
|
103
105
|
type IAboutConfig,
|
|
104
106
|
type IBaseConfig,
|
|
105
107
|
type IBaseResponse,
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { TWldy } from "..";
|
|
2
|
+
|
|
3
|
+
export interface IStimulSoftData {
|
|
4
|
+
jsonTemplates: string[];
|
|
5
|
+
listData: Array<TWldy.IWldyDataResponse[]>;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export class TStimulSoftData implements IStimulSoftData {
|
|
9
|
+
jsonTemplates: string[];
|
|
10
|
+
listData: Array<TWldy.IWldyDataResponse[]>;
|
|
11
|
+
constructor(jsonTemplates: string[], listData: Array<TWldy.IWldyDataResponse[]>) {
|
|
12
|
+
this.jsonTemplates = jsonTemplates;
|
|
13
|
+
this.listData = listData;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -47,6 +47,7 @@ export interface IWldyPageResponse {
|
|
|
47
47
|
pageModeText: string;
|
|
48
48
|
billMain: number;
|
|
49
49
|
billUUID: string;
|
|
50
|
+
loadMode: number;
|
|
50
51
|
listData: IWldyDataResponse[];
|
|
51
52
|
}
|
|
52
53
|
|
|
@@ -94,6 +95,7 @@ export class TWldyPageResponse implements IWldyPageResponse {
|
|
|
94
95
|
pageModeText: string = "";
|
|
95
96
|
billMain: number = 0;
|
|
96
97
|
billUUID: string = "";
|
|
98
|
+
loadMode: number = 0;
|
|
97
99
|
listData: IWldyDataResponse[] = [];
|
|
98
100
|
|
|
99
101
|
static parseJson(pagePara: string) {
|