import type { TevmState } from '@tevm/state'; import type { BaseParams } from './BaseParams.js'; /** * params for `tevm_loadState` method. Takes a {@link TevmState} to load into state. */ export type LoadStateParams = BaseParams & { readonly state: TevmState; }; //# sourceMappingURL=LoadStateParams.d.ts.map