cyc-type-def 3.0.9 → 3.0.11
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/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -51,7 +51,6 @@ interface MsjStudBatch extends Base {
|
|
|
51
51
|
status?: string;
|
|
52
52
|
joinStatus?: string;
|
|
53
53
|
regUuid?: string;
|
|
54
|
-
sheetName?: string;
|
|
55
54
|
}
|
|
56
55
|
|
|
57
56
|
declare class Sheep implements Base {
|
|
@@ -264,6 +263,7 @@ interface MsjClassBatch extends Base {
|
|
|
264
263
|
numOfClass: number;
|
|
265
264
|
dt?: Date;
|
|
266
265
|
minAtt?: number;
|
|
266
|
+
sheetName?: string;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
interface MsjClassTime extends Base {
|
|
@@ -453,6 +453,9 @@ declare class AppUser {
|
|
|
453
453
|
permissions?: string[];
|
|
454
454
|
assigned_cg?: AssignedCG[];
|
|
455
455
|
idSheep?: string;
|
|
456
|
+
settings?: {
|
|
457
|
+
[key: string]: boolean;
|
|
458
|
+
};
|
|
456
459
|
constructor(id: string, name: string, phoneNum: string, permission: string);
|
|
457
460
|
}
|
|
458
461
|
|
package/dist/index.d.ts
CHANGED
|
@@ -51,7 +51,6 @@ interface MsjStudBatch extends Base {
|
|
|
51
51
|
status?: string;
|
|
52
52
|
joinStatus?: string;
|
|
53
53
|
regUuid?: string;
|
|
54
|
-
sheetName?: string;
|
|
55
54
|
}
|
|
56
55
|
|
|
57
56
|
declare class Sheep implements Base {
|
|
@@ -264,6 +263,7 @@ interface MsjClassBatch extends Base {
|
|
|
264
263
|
numOfClass: number;
|
|
265
264
|
dt?: Date;
|
|
266
265
|
minAtt?: number;
|
|
266
|
+
sheetName?: string;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
interface MsjClassTime extends Base {
|
|
@@ -453,6 +453,9 @@ declare class AppUser {
|
|
|
453
453
|
permissions?: string[];
|
|
454
454
|
assigned_cg?: AssignedCG[];
|
|
455
455
|
idSheep?: string;
|
|
456
|
+
settings?: {
|
|
457
|
+
[key: string]: boolean;
|
|
458
|
+
};
|
|
456
459
|
constructor(id: string, name: string, phoneNum: string, permission: string);
|
|
457
460
|
}
|
|
458
461
|
|