UNPKG

@fruitsjs/core

Version:

Principal package with functions and models for building Fruits Eco-Blockchain applications.

19 lines (16 loc) 351 B
import {DefaultSendArgs} from './defaultSendArgs'; /** * The argument object for [[AccountApi.setAccountInfo]] * * @module core */ export interface SetAccountInfoArgs extends DefaultSendArgs { /** * The accounts name */ name: string; /** * The accounts description */ description: string; }