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

20 lines
501 B
Text

/**
* @param {Effects} effects
* @param {State} ok
* @param {State} nok
* @param {string} type
* @param {string} markerType
* @param {string} stringType
* @returns {State}
*/
export function factoryTitle(
effects: Effects,
ok: State,
nok: State,
type: string,
markerType: string,
stringType: string
): State
export type Effects = import('micromark-util-types').Effects
export type State = import('micromark-util-types').State
export type Code = import('micromark-util-types').Code