touchstudy-core 0.1.67 → 0.1.68
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.js +18 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +18 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/tests/performances/do-exam-session-list-student.d.ts +19 -0
- package/dist/tests/performances/do-exam-session-request-answer-one-time.d.ts +19 -0
- package/dist/tests/performances/do-exam-session2.d.ts +1 -1
- package/package.json +1 -1
@@ -0,0 +1,19 @@
|
|
1
|
+
export function setup(): {
|
2
|
+
id: number;
|
3
|
+
code: string;
|
4
|
+
teacherAuthorizeHeaders: {
|
5
|
+
Authorization: string;
|
6
|
+
} & {
|
7
|
+
"Academy-Headers": string;
|
8
|
+
"Content-Type": string;
|
9
|
+
"Accept-Language": string;
|
10
|
+
};
|
11
|
+
}[];
|
12
|
+
export default function _default(data: any): void;
|
13
|
+
export namespace options {
|
14
|
+
export { MAX_DEMO_STUDENTS as vus };
|
15
|
+
export { MAX_DEMO_STUDENTS as iterations };
|
16
|
+
}
|
17
|
+
declare const AcademyHeaders: "Academy-Headers";
|
18
|
+
declare const MAX_DEMO_STUDENTS: number;
|
19
|
+
export {};
|
@@ -0,0 +1,19 @@
|
|
1
|
+
export function setup(): {
|
2
|
+
id: number;
|
3
|
+
code: string;
|
4
|
+
teacherAuthorizeHeaders: {
|
5
|
+
Authorization: string;
|
6
|
+
} & {
|
7
|
+
"Academy-Headers": string;
|
8
|
+
"Content-Type": string;
|
9
|
+
"Accept-Language": string;
|
10
|
+
};
|
11
|
+
}[];
|
12
|
+
export default function _default(data: any): void;
|
13
|
+
export namespace options {
|
14
|
+
export { MAX_DEMO_STUDENTS as vus };
|
15
|
+
export { MAX_DEMO_STUDENTS as iterations };
|
16
|
+
}
|
17
|
+
declare const AcademyHeaders: "Academy-Headers";
|
18
|
+
declare const MAX_DEMO_STUDENTS: 200;
|
19
|
+
export {};
|