UNPKG

fontoxpath

Version:

A minimalistic XPath 3.1 engine in JavaScript

17 lines (16 loc) 178 B
/** * @record * @template T */ export default class AtomicValue { constructor () { /** * @type {string} */ this.type; /** * @type {T} */ this.value; } }