mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 16:08:16 +08:00
24 lines
414 B
TypeScript
24 lines
414 B
TypeScript
|
export type {Encoding, Token, Value} from 'micromark-util-types'
|
||
|
export type {
|
||
|
CompileContext,
|
||
|
CompileData,
|
||
|
Extension,
|
||
|
Handles,
|
||
|
Handle,
|
||
|
OnEnterError,
|
||
|
OnExitError,
|
||
|
Options,
|
||
|
Transform
|
||
|
} from './lib/types.js'
|
||
|
export {fromMarkdown} from './lib/index.js'
|
||
|
|
||
|
declare module 'micromark-util-types' {
|
||
|
interface TokenTypeMap {
|
||
|
listItem: 'listItem'
|
||
|
}
|
||
|
|
||
|
interface Token {
|
||
|
_spread?: boolean
|
||
|
}
|
||
|
}
|