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

25 lines
628 B
Text

/**
* @param {Effects} effects
* @param {State} ok
* @param {State} nok
* @param {string} type
* @param {string} literalType
* @param {string} literalMarkerType
* @param {string} rawType
* @param {string} stringType
* @param {number} [max=Infinity]
* @returns {State}
*/
export function factoryDestination(
effects: Effects,
ok: State,
nok: State,
type: string,
literalType: string,
literalMarkerType: string,
rawType: string,
stringType: string,
max?: number | undefined
): State
export type Effects = import('micromark-util-types').Effects
export type State = import('micromark-util-types').State