mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-24 20:14:35 -04:00
Update dependency eslint-plugin-import to v2.25.2 (#1555)
* Update dependency eslint-plugin-import to v2.25.2 Signed-off-by: Renovate Bot <bot@renovateapp.com> Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Make type imports more explicit Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> * Enforce use of type imports Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de> Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
fc3a3fa1a9
commit
2abe40ef1d
264 changed files with 567 additions and 504 deletions
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-abbr' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
const markdownItAbbreviation: MarkdownIt.PluginSimple
|
||||
export = markdownItAbbreviation
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-deflist' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
const markdownItDefinitionList: MarkdownIt.PluginSimple
|
||||
export = markdownItDefinitionList
|
||||
}
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-emoji/bare' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import { EmojiOptions } from './interface'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
import type { EmojiOptions } from './interface'
|
||||
const markdownItEmoji: MarkdownIt.PluginWithOptions<EmojiOptions>
|
||||
export = markdownItEmoji
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-footnote' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
const markdownItFootnote: MarkdownIt.PluginSimple
|
||||
export = markdownItFootnote
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-ins' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
const markdownItInserted: MarkdownIt.PluginSimple
|
||||
export = markdownItInserted
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it/lib/rules_core/linkify' {
|
||||
import { RuleCore } from 'markdown-it/lib/parser_core'
|
||||
import type { RuleCore } from 'markdown-it/lib/parser_core'
|
||||
const markdownItLinkify: RuleCore
|
||||
export = markdownItLinkify
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-mark' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
const markdownItMark: MarkdownIt.PluginSimple
|
||||
export = markdownItMark
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-mathjax' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
const markdownItMathJax: (MathJaxOptions) => MarkdownIt.PluginSimple
|
||||
export = markdownItMathJax
|
||||
}
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-regex' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import { RegexOptions } from './interface'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
import type { RegexOptions } from './interface'
|
||||
const markdownItRegex: MarkdownIt.PluginWithOptions<RegexOptions>
|
||||
export = markdownItRegex
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-sub' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
const markdownItSubscript: MarkdownIt.PluginSimple
|
||||
export = markdownItSubscript
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
*/
|
||||
|
||||
declare module 'markdown-it-sup' {
|
||||
import MarkdownIt from 'markdown-it/lib'
|
||||
import type MarkdownIt from 'markdown-it/lib'
|
||||
const markdownItSuperscript: MarkdownIt.PluginSimple
|
||||
export = markdownItSuperscript
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue