import type { BaseParams } from './BaseParams.js'; /** * Tevm params to mine 1 or more blocks * @example * const mineParams: import('@tevm/actions-types').MineParams = { * blockCount: 5, * } */ export type MineParams = BaseParams & { /** * Number of blocks to mine. Defaults to 1 */ readonly blockCount?: number; /** * Interval between block timestamps. Defaults to 1 */ readonly interval?: number; }; //# sourceMappingURL=MineParams.d.ts.map