1234567891011121314151617181920212223242526272829303132333435363738394041 |
- export function factorySpace(
- effects: Effects,
- ok: State,
- type: TokenType,
- max?: number | undefined
- ): State
- export type Effects = import('micromark-util-types').Effects
- export type State = import('micromark-util-types').State
- export type TokenType = import('micromark-util-types').TokenType
|