@oino-ts/types 0.9.0 → 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.
|
@@ -66,12 +66,12 @@ export declare abstract class OINOBenchmark {
|
|
|
66
66
|
/**
|
|
67
67
|
* OINOMemoryBenchmark is a memory-based benchmark implementation.
|
|
68
68
|
* It stores the benchmark data in memory and allows to reset, start, end and get benchmark data.
|
|
69
|
-
*
|
|
69
|
+
* In case of recursively/iteratively starting a benchmark, it will honor the first start and ignore the rest. *
|
|
70
70
|
*/
|
|
71
71
|
export declare class OINOMemoryBenchmark extends OINOBenchmark {
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
protected _benchmarkCount: Record<string, number>;
|
|
73
|
+
protected _benchmarkData: Record<string, number>;
|
|
74
|
+
protected _benchmarkStart: Record<string, number>;
|
|
75
75
|
/**
|
|
76
76
|
* Reset benchmark data (but not what is enabled).
|
|
77
77
|
*
|