@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
11 lines • 318 B
TypeScript
import type { TevmSetAccountError } from './TevmSetAccountError.js';
/**
* Result of SetAccount Action
*/
export type SetAccountResult<ErrorType = TevmSetAccountError> = {
/**
* Description of the exception, if any occurred
*/
errors?: ErrorType[];
};
//# sourceMappingURL=SetAccountResult.d.ts.map