@jonahsnider/benchmark
Advanced tools
Comparing version 3.1.0 to 4.0.0
{ | ||
"name": "@jonahsnider/benchmark", | ||
"version": "3.1.0", | ||
"version": "4.0.0", | ||
"bugs": { | ||
@@ -5,0 +5,0 @@ "url": "https://github.com/jonahsnider/benchmark/issues" |
@@ -84,3 +84,3 @@ /// <reference types="node" /> | ||
* | ||
* @returns A {@link BenchmarkResults} `Map` | ||
* @returns A {@link (Benchmark:namespace).Results} `Map` | ||
*/ | ||
@@ -91,13 +91,4 @@ runSuites(): Promise<Benchmark.Results>; | ||
/** | ||
* {@inheritDoc (Benchmark:namespace).Results} | ||
* | ||
* @deprecated Renamed to {@link (Benchmark:namespace).Results}. | ||
* | ||
* @public | ||
*/ | ||
export declare type BenchmarkResults = Benchmark.Results; | ||
/** | ||
* @public | ||
*/ | ||
export declare namespace Suite { | ||
@@ -271,31 +262,4 @@ /** | ||
/** | ||
* {@inheritDoc (Suite:namespace).Name} | ||
* | ||
* @deprecated Renamed to {@link (Suite:namespace).Name}. | ||
* | ||
* @public | ||
*/ | ||
export declare type SuiteName = Suite.Name; | ||
/** | ||
* {@inheritDoc (Suite:namespace).Results} | ||
* | ||
* @deprecated Renamed to {@link (Suite:namespace).Results}. | ||
* | ||
* @public | ||
*/ | ||
export declare type SuiteResults = Suite.Results; | ||
/** | ||
* {@inheritDoc (Suite:namespace).RunOptions} | ||
* | ||
* @deprecated Renamed to {@link (Suite:namespace).RunOptions}. | ||
* | ||
* @public | ||
*/ | ||
export declare type SuiteRunOptions = Suite.RunOptions; | ||
/** | ||
* @public | ||
*/ | ||
export declare namespace Test { | ||
@@ -348,20 +312,2 @@ /** | ||
/** | ||
* {@inheritdoc (Test:class)} | ||
* | ||
* @deprecated Renamed to {@link (Test:class)}. | ||
* | ||
* @public | ||
*/ | ||
export declare const _Test: typeof Test; | ||
/** | ||
* {@inheritDoc (Test:namespace).Name} | ||
* | ||
* @deprecated Renamed to {@link (Test:namespace).Name}. | ||
* | ||
* @public | ||
*/ | ||
export declare type TestName = Test.Name; | ||
export { } |
@@ -56,3 +56,3 @@ import assert from 'node:assert/strict'; | ||
* | ||
* @returns A {@link BenchmarkResults} `Map` | ||
* @returns A {@link (Benchmark:namespace).Results} `Map` | ||
*/ | ||
@@ -59,0 +59,0 @@ async runSuites() { |
@@ -1,14 +0,4 @@ | ||
import { Test } from './test.js'; | ||
export { Benchmark } from './benchmark.js'; | ||
export { Suite } from './suite.js'; | ||
export { Test } from './test.js'; | ||
/** | ||
* {@inheritdoc (Test:class)} | ||
* | ||
* @deprecated Renamed to {@link (Test:class)}. | ||
* | ||
* @public | ||
*/ | ||
// eslint-disable-next-line @typescript-eslint/naming-convention | ||
export const _Test = Test; | ||
//# sourceMappingURL=index.js.map |
Sorry, the diff of this file is not supported yet
48889
684