mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:09:31 +08:00
20 lines
501 B
Text
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
|