UNPKG

@mysten/sui

Version:

Sui TypeScript API(Work in Progress)

9 lines (8 loc) 276 B
import type { TransactionObjectInput } from './Transaction.js'; export declare function createObjectMethods<T>(makeObject: (value: TransactionObjectInput) => T): { (value: TransactionObjectInput): T; system(): T; clock(): T; random(): T; denyList(): T; };