import {SinonStubbedInstance} from "sinon"; import {IBeaconChain} from "../../../src/chain/index.js"; import {Mutable} from "../types.js"; export type StubbedChain = IBeaconChain & SinonStubbedInstance; export type StubbedOf = T & SinonStubbedInstance; /** Helper type to make dependencies mutable for validation tests */ export type StubbedChainMutable = StubbedOf>; export * from "./beaconDb.js";