mirror of
https://github.com/learnk8s/learnk8s.io.git
synced 2026-07-11 00:19:17 +00:00
20 lines
413 B
TypeScript
20 lines
413 B
TypeScript
declare module '~remark-parse/index' {
|
|
import { Root } from 'mdast'
|
|
export class Parser {
|
|
public readonly options: {
|
|
commonmark: boolean
|
|
gfm: boolean
|
|
footnotes: boolean
|
|
pedantic: boolean
|
|
blocks: string[]
|
|
}
|
|
constructor(doc: null, file: string)
|
|
parse(): Root
|
|
}
|
|
}
|
|
|
|
declare module 'remark-parse' {
|
|
import alias = require('~remark-parse/index')
|
|
export = alias
|
|
}
|