Update generated files.

This commit is contained in:
David Anson 2020-11-24 16:37:11 -08:00
parent d2bd75748f
commit 0c68e855f7
2 changed files with 1804 additions and 369 deletions

File diff suppressed because it is too large Load diff

View file

@ -51,7 +51,7 @@ type Options = {
/** /**
* Additional plugins. * Additional plugins.
*/ */
markdownItPlugins?: any[][]; markdownItPlugins?: Plugin[];
}; };
/** /**
* Called with the result of the lint operation. * Called with the result of the lint operation.
@ -105,7 +105,7 @@ type RuleParams = {
*/ */
name: string; name: string;
/** /**
* markdown-it token objects. * Token objects from markdown-it.
*/ */
tokens: MarkdownItToken[]; tokens: MarkdownItToken[];
/** /**
@ -262,7 +262,7 @@ type Rule = {
function: RuleFunction; function: RuleFunction;
}; };
/** /**
* markdown-it plugin. * A markdown-it plugin.
*/ */
type Plugin = any[]; type Plugin = any[];
/** /**