forked from Rowland/EG
23 lines
1.3 KiB
TypeScript
23 lines
1.3 KiB
TypeScript
/**
|
|
* @param {Effects} effects
|
|
* @param {State} ok
|
|
* @param {State} nok
|
|
* @param {TokenType} attributesType
|
|
* @param {TokenType} attributesMarkerType
|
|
* @param {TokenType} attributeType
|
|
* @param {TokenType} attributeIdType
|
|
* @param {TokenType} attributeClassType
|
|
* @param {TokenType} attributeNameType
|
|
* @param {TokenType} attributeInitializerType
|
|
* @param {TokenType} attributeValueLiteralType
|
|
* @param {TokenType} attributeValueType
|
|
* @param {TokenType} attributeValueMarker
|
|
* @param {TokenType} attributeValueData
|
|
* @param {boolean | undefined} [disallowEol=false]
|
|
*/
|
|
export function factoryAttributes(effects: Effects, ok: State, nok: State, attributesType: TokenType, attributesMarkerType: TokenType, attributeType: TokenType, attributeIdType: TokenType, attributeClassType: TokenType, attributeNameType: TokenType, attributeInitializerType: TokenType, attributeValueLiteralType: TokenType, attributeValueType: TokenType, attributeValueMarker: TokenType, attributeValueData: TokenType, disallowEol?: boolean | undefined): (code: Code) => State | undefined;
|
|
import type { Effects } from 'micromark-util-types';
|
|
import type { State } from 'micromark-util-types';
|
|
import type { TokenType } from 'micromark-util-types';
|
|
import type { Code } from 'micromark-util-types';
|
|
//# sourceMappingURL=factory-attributes.d.ts.map
|