salve-annos
Version:
A fork with support for documentation of Salve, a Javascript library which implements a validator able to validate an XML document on the basis of a subset of RelaxNG.
16 lines (15 loc) • 523 B
TypeScript
import { Element } from "../parser";
export declare function localName(value: string): string;
export declare function fromQNameToURI(value: string, el: Element): string;
/**
* This walker checks that the types used in the tree can be used, and does
* special processing for ``QName`` and ``NOTATION``.
*/
export declare class DatatypeProcessor {
/**
* The warnings generated during the walk. This array is populated while
* walking.
*/
readonly warnings: string[];
walk(el: Element): void;
}