UNPKG

@signumjs/core

Version:

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

17 lines (16 loc) 277 B
/** * Copyright (c) 2022 Signum Network */ interface KeyValue { key2: string; value: string; } /** * Contract Map Value List * @category entities */ export interface ContractMapValueList { keyValues: KeyValue[]; requestProcessingTime: number; } export {};