UNPKG

@neo-one/server-plugin-network

Version:

NEO•ONE Server network plugin.

10 lines (9 loc) 426 B
import { FullNode } from '@neo-one/node'; import { BackupRestoreOptions } from '@neo-one/node-data-backup'; import { CLIArgs } from '@neo-one/server-plugin'; import { Args, Command } from 'vorpal'; export declare const addOptions: (command: Command) => void; export declare const processArgs: (cliArgs: CLIArgs, args: Args) => Promise<{ readonly node: FullNode; readonly options: BackupRestoreOptions; } | undefined>;