mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:29:30 +08:00
15 lines
368 B
Text
15 lines
368 B
Text
/**
|
|
* @param {Effects} effects
|
|
* @param {State} ok
|
|
* @param {string} type
|
|
* @param {number} [max=Infinity]
|
|
* @returns {State}
|
|
*/
|
|
export function factorySpace(
|
|
effects: Effects,
|
|
ok: State,
|
|
type: string,
|
|
max?: number | undefined
|
|
): State
|
|
export type Effects = import('micromark-util-types').Effects
|
|
export type State = import('micromark-util-types').State
|