UNPKG

microdata-rdf-streaming-parser

Version:
14 lines (13 loc) 212 B
/** * An HTML parser event. */ export type BufferedTagEvent = { type: 'close'; } | { type: 'open'; name: string; attributes: Record<string, string>; } | { type: 'text'; data: string; };