mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
modify & fix some definition for package 'markdown-it'. (#36391)
This commit is contained in:
parent
4eebb7a04e
commit
a5b79d39aa
2
types/markdown-it/lib/parser_core.d.ts
vendored
2
types/markdown-it/lib/parser_core.d.ts
vendored
@ -1,10 +1,12 @@
|
||||
import MarkdownIt = require(".");
|
||||
import Ruler = require("./ruler");
|
||||
import Token = require("./token");
|
||||
import StateCore = require("./rules_core/state_core");
|
||||
|
||||
export = ParserCore;
|
||||
|
||||
declare class ParserCore {
|
||||
process(state: any): void;
|
||||
ruler: Ruler;
|
||||
State: StateCore
|
||||
}
|
||||
|
||||
@ -4,6 +4,9 @@ import Token = require("../token");
|
||||
export = StateCore;
|
||||
|
||||
declare class StateCore {
|
||||
|
||||
constructor(src: string, md: MarkdownIt, env: any)
|
||||
|
||||
env: any;
|
||||
level: number;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user