@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
18 lines (17 loc) • 339 B
TypeScript
import { DefaultSendArgs } from './defaultSendArgs';
/**
* The argument object for {@link AccountApi.setAccountInfo}
*
*
* @category args
*/
export interface SetAccountInfoArgs extends DefaultSendArgs {
/**
* The accounts name
*/
name: string;
/**
* The accounts description
*/
description: string;
}