@neo-one/server
Version:
NEO•ONE Server that NEO•ONE CLI and other clients connect to.
13 lines (12 loc) • 396 B
TypeScript
import { Monitor } from '@neo-one/monitor';
import { Plugin } from '@neo-one/server-plugin';
export declare const plugins: {
DEFAULT_PLUGINS: readonly string[];
getPlugin: ({ monitor, pluginName }: {
readonly monitor: Monitor;
readonly pluginName: string;
}) => Plugin;
cleanPluginName: ({ pluginName }: {
readonly pluginName: string;
}) => string;
};