@fairdatasociety/fdp-cli
Version:
CLI tool for FDP-Storage
19 lines (16 loc) • 387 B
text/typescript
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 }
}