Documentation
    Preparing search index...

    Interface PluginInstance

    A plugin for todone

    interface PluginInstance {
        name: string;
        pattern?: Searchable | Searchable[];
        check(match: Match): Promise<null | PluginResult>;
    }
    Index

    Properties

    Methods

    Properties

    name: string

    The plugin's name, will be used for reporting

    pattern?: Searchable | Searchable[]

    If a match's URL tests true against any of these patterns, it will be processed by this plugin

    Methods