autoload<T>(type: (new (application: Application) => T)): ((application: Application) => void)
Generate a TypeDoc load function that instantiate the given plugin constructor & call initialize on it.
This method's result should be typically exported as load from your plugin.
Generate a TypeDoc
load
function that instantiate the given plugin constructor & callinitialize
on it. This method's result should be typically exported asload
from your plugin.From ./packages/plugin-code-blocks/src/load.ts
Returns
the
load
function.