import type { SuiEvent, MoveCallSuiTransaction, SuiMoveObject } from '@mysten/sui/client' import { DecodedStruct } from '@typemove/move' export type TypedEventInstance = DecodedStruct export type TypedSuiMoveObject = DecodedStruct export type TypedFunctionPayload> = MoveCallSuiTransaction & { /** * decoded argument data using ABI, undefined if there is decoding error, usually because the ABI/data mismatch */ arguments_decoded: T } export type { PartitionHandler, HandlerOptions } from '../core/index.js'