UNPKG

graphdb-workbench

Version:
23 lines (22 loc) 565 B
/** * PluginDefinition interface represents the structure of a plugin definition as used in the plugin manifest. */ export declare class PluginDefinition { /** * The entry point of the plugin, typically a path to the main JavaScript file. */ readonly entry: string; /** * The name of the plugin. */ readonly name: string; constructor( /** * The entry point of the plugin, typically a path to the main JavaScript file. */ entry: string, /** * The name of the plugin. */ name: string); }