UNPKG

@fairdatasociety/fdp-cli

Version:
19 lines (16 loc) 387 B
import { RootCommand } from '../../command/root-command' import { Account } from '../account' export interface ConfigOption { optionKey: string propertyKey: keyof Config & keyof RootCommand } /** * Config file structure */ export interface Config { beeApiUrl: string beeDebugApiUrl: string ensNetwork: string mainAccount: string accounts: { [name: string]: Account } }