Urara-Blog/node_modules/.pnpm-store/v3/files/c0/c70b2fa08a597c038dc0076471a664af25d37691754c3f30df7b55ef90a90b886e924ab2cd27f8cce7fb95618f014ec1606c19ae1249a2de7b4501e3e96736
2022-08-14 01:14:53 +08:00

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