@tevm/actions
Version:
A typesafe library for writing forge scripts in typescript
11 lines • 335 B
TypeScript
/**
* The base parameters shared across all actions
*/
export type BaseParams<TThrowOnFail extends boolean = boolean> = {
/**
* Whether to throw on errors or return errors as value on the 'errors' property
* Defaults to `true`
*/
readonly throwOnFail?: TThrowOnFail;
};
//# sourceMappingURL=BaseParams.d.ts.map