Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | /**
* Re-exports from validator modules.
*
* Plugins and tests import from utils/index.ts, which re-exports from here.
* This file exists solely for backward compatibility with existing import paths.
*/
export { validateGlobalToken as validateGlobalTokens } from '../validators/global/index.js';
export { validateComponentTokens } from '../validators/component/index.js';
export { validateReferenceTokens } from '../validators/reference/index.js';
export { tokenize, shouldValidate } from '../validators/shared/helpers.js';
|