mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 19:59:31 +08:00
21 lines
550 B
Text
21 lines
550 B
Text
/**
|
|
* @this {TokenizeContext}
|
|
* @param {Effects} effects
|
|
* @param {State} ok
|
|
* @param {State} nok
|
|
* @param {string} type
|
|
* @param {string} markerType
|
|
* @param {string} stringType
|
|
* @returns {State}
|
|
*/
|
|
export function factoryLabel(
|
|
effects: Effects,
|
|
ok: State,
|
|
nok: State,
|
|
type: string,
|
|
markerType: string,
|
|
stringType: string
|
|
): State
|
|
export type Effects = import('micromark-util-types').Effects
|
|
export type TokenizeContext = import('micromark-util-types').TokenizeContext
|
|
export type State = import('micromark-util-types').State
|