UNPKG

@hashgraph/hedera-cli

Version:

CLI tool to manage and setup developer environments for Hedera Hashgraph.

10 lines (9 loc) 184 B
export interface Key { _type: string; key: string; } export interface Filter { field: string; operation: 'gt' | 'lt' | 'gte' | 'lte' | 'eq' | 'ne'; value: number | string; }