UNPKG

@enterthenamehere/esdoc

Version:

Good Documentation Generator For JavaScript, updated for new decade

37 lines (34 loc) 1.03 kB
/** * example: * ================================================================================ * in esdoc.json config file * ... * plugins: [ * { <-- PluginOptionsItems start * name: "esdoc-name1-plugin", * options: { * isYourFridgeRunning: true * } * }, <-- PluginOptionsItems end * { <-- PluginOptionsItems start * name: "esdoc-name2-plugin", * doYouHaveMagnetsOnYourFridge: true * }, <-- PluginOptionsItems end * [ <-- PluginOptionsItems start * "esdoc-name3-plugin", * { * didILeftMyOverOn: false * } * ], <-- PluginOptionsItems end * [ <-- PluginOptionsItems start * "esdoc-name4-plugin" * ], <-- PluginOptionsItems end * "esdoc-name5-plugin" <-- PluginOptionsItems is just one line with string as name of plugin * ] */ import { Option } from './Option.js'; export class ESDocPluginOptions extends Option { static get type() { return 'ESDocPluginOptions'; } }