@ningboyz/types 1.0.189 → 1.0.190
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
|
@@ -1,3 +1,11 @@
|
|
|
1
|
-
export interface IUnitResponseElemPara {
|
|
1
|
+
export interface IUnitResponseElemPara {
|
|
2
|
+
/** 签章的特殊id以及secret */
|
|
3
|
+
signProjectId: string;
|
|
4
|
+
signProjectSecret: string;
|
|
5
|
+
}
|
|
2
6
|
|
|
3
|
-
export class TUnitResponseElemPara implements IUnitResponseElemPara {
|
|
7
|
+
export class TUnitResponseElemPara implements IUnitResponseElemPara {
|
|
8
|
+
/** 签章的特殊id以及secret */
|
|
9
|
+
signProjectId: string = "";
|
|
10
|
+
signProjectSecret: string = "";
|
|
11
|
+
}
|