UNPKG

@tevm/actions

Version:

A typesafe library for writing forge scripts in typescript

11 lines (10 loc) 278 B
/** * 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 }