mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02:00
21 lines
646 B
TypeScript
21 lines
646 B
TypeScript
/**
|
|
* @this {TokenizeContext}
|
|
* @param {Effects} effects
|
|
* @param {State} ok
|
|
* @param {State} nok
|
|
* @param {TokenType} type
|
|
*/
|
|
export function factoryName(
|
|
this: import('micromark-util-types').TokenizeContext,
|
|
effects: Effects,
|
|
ok: State,
|
|
nok: State,
|
|
type: TokenType
|
|
): (
|
|
code: import('micromark-util-types').Code
|
|
) => import('micromark-util-types').State | undefined
|
|
export type Effects = import('micromark-util-types').Effects
|
|
export type State = import('micromark-util-types').State
|
|
export type TokenizeContext = import('micromark-util-types').TokenizeContext
|
|
export type TokenType = import('micromark-util-types').TokenType
|