UNPKG

@signumjs/core

Version:

Principal package with functions and models for building Signum Network applications.

17 lines (16 loc) 310 B
/** * The argument object for {@link ContractApi.getContractMapValuesByFirstKey} * * * @category args */ export interface GetContractMapValuesByFirstKeyArgs { /** * The id of the contract */ contractId: string; /** * The first key of the mapping tuple. */ key1: string; }