UNPKG

0xweb

Version:

Contract package manager and other web3 tools

7 lines (5 loc) 114 B
export type TResult<T> = { error?: Error result?: T } export type TResultAsync<T> = Promise<TResult<T>>;