TabScript - v2.0.2
    Preparing search index...

    Interface PluginModule

    A plugin module that can extend the parser. The default export receives the parser instance, global options, and plugin-specific options. The plugin function should augment/replace parse* methods on the parser.

    interface PluginModule {
        default: (
            parser: Parser,
            globalOptions: Options,
            pluginOptions: PluginOptions,
        ) => void;
    }
    Index

    Properties

    Properties

    default: (
        parser: Parser,
        globalOptions: Options,
        pluginOptions: PluginOptions,
    ) => void