import type { DumpStateError } from '@tevm/errors'; import type { TevmState } from '@tevm/state'; /** * Result of the dumpState method */ export type DumpStateResult = { /** * The serialized tevm state */ state: TevmState; /** * Description of the exception, if any occurred */ errors?: ErrorType[]; }; //# sourceMappingURL=DumpStateResult.d.ts.map