123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- export function factoryDestination(
- effects: Effects,
- ok: State,
- nok: State,
- type: TokenType,
- literalType: TokenType,
- literalMarkerType: TokenType,
- rawType: TokenType,
- stringType: 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
|