File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 66 "types" : " index.d.ts" ,
77 "scripts" : {
88 "test" : " node --test --allow-natives-syntax" ,
9- "test:types" : " tsd -f test /types.test-d.ts" ,
9+ "test:types" : " tsd -f types /types.test-d.ts" ,
1010 "lint" : " biome lint ." ,
1111 "lint:ci" : " biome ci ." ,
1212 "lint:fix" : " biome lint --write ." ,
Original file line number Diff line number Diff line change 11import type { Histogram } from "node:perf_hooks" ;
22import { expectAssignable , expectNotAssignable , expectType } from "tsd" ;
3+
34import {
4- type BenchNode ,
55 Suite ,
66 V8GetOptimizationStatus ,
77 V8NeverOptimizePlugin ,
@@ -11,7 +11,9 @@ import {
1111 htmlReport ,
1212 jsonReport ,
1313 textReport ,
14- } from "../index" ;
14+ } from ".." ;
15+
16+ import type { BenchNode } from ".." ;
1517
1618expectType < BenchNode . Suite > ( new Suite ( ) ) ;
1719expectType < BenchNode . Suite > (
You can’t perform that action at this time.
0 commit comments