@grafana/k6-test-builder 0.8.25 → 0.9.1
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.ts +3 -2
- package/dist/index.js +3936 -3861
- package/dist/module.js +3918 -3843
- package/package.json +23 -21
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { JSX } from "react/jsx-runtime";
|
|
1
2
|
import { FocusEventHandler, AnchorHTMLAttributes, ReactNode, ElementType, ReactElement, FunctionComponent } from "react";
|
|
2
3
|
import { InvalidArchiveError } from "har-to-k6";
|
|
3
|
-
import { ThemeOptions } from "@material
|
|
4
|
+
import { ThemeOptions } from "@mui/material/styles/createTheme";
|
|
4
5
|
import { GrafanaTheme2 } from "@grafana/data";
|
|
5
6
|
interface VUhBreakdown {
|
|
6
7
|
base_total_vuh: number | null;
|
|
@@ -35,7 +36,7 @@ declare const ScenarioExecutor: {
|
|
|
35
36
|
readonly ConstantArrivalRate: "constant-arrival-rate";
|
|
36
37
|
readonly RampingArrivalRate: "ramping-arrival-rate";
|
|
37
38
|
};
|
|
38
|
-
type ScenarioExecutorType = typeof ScenarioExecutor[keyof typeof ScenarioExecutor];
|
|
39
|
+
type ScenarioExecutorType = (typeof ScenarioExecutor)[keyof typeof ScenarioExecutor];
|
|
39
40
|
interface ScenarioCommonOptions {
|
|
40
41
|
executor: ScenarioExecutorType;
|
|
41
42
|
startTime?: string;
|