@neo-one/server-plugin-network
Version:
NEO•ONE Server network plugin.
16 lines (15 loc) • 638 B
TypeScript
import { CLIArgs, InteractiveCommand, Plugin, ResourceType } from '@neo-one/server-plugin';
import { NetworkResourceType } from './NetworkResourceType';
export declare class NetworkPlugin extends Plugin {
readonly networkResourceType: NetworkResourceType;
readonly name: string;
readonly names: {
readonly capital: string;
readonly capitalPlural: string;
readonly lower: string;
readonly lowerPlural: string;
};
readonly resourceTypes: readonly ResourceType[];
readonly commands: ReadonlyArray<(cliArgs: CLIArgs) => void>;
readonly interactive: readonly InteractiveCommand[];
}