12345678910111213141516171819202122232425262728293031323334353637383940 |
- export function createTokenizer(
- parser: ParseContext,
- initialize: InitialConstruct,
- from?: Omit<Point, '_bufferIndex' | '_index'> | undefined
- ): TokenizeContext
- export type Chunk = import('micromark-util-types').Chunk
- export type Code = import('micromark-util-types').Code
- export type Construct = import('micromark-util-types').Construct
- export type ConstructRecord = import('micromark-util-types').ConstructRecord
- export type Effects = import('micromark-util-types').Effects
- export type InitialConstruct = import('micromark-util-types').InitialConstruct
- export type ParseContext = import('micromark-util-types').ParseContext
- export type Point = import('micromark-util-types').Point
- export type State = import('micromark-util-types').State
- export type Token = import('micromark-util-types').Token
- export type TokenType = import('micromark-util-types').TokenType
- export type TokenizeContext = import('micromark-util-types').TokenizeContext
- export type Restore = () => undefined
- export type Info = {
- restore: Restore
- from: number
- }
- export type ReturnHandle = (construct: Construct, info: Info) => undefined
|