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) • 377 B
TypeScript
/**
* Implementation of the XMLSchema datatypes.
* @author Louis-Dominique Dubeau
* @license MPL 2.0
* @copyright Mangalam Research Center for Buddhist Languages
*/
import { TypeLibrary } from "./library";
export interface ConvertedPattern {
rng: string;
internal: RegExp;
}
/**
* The XML Schema datatype library.
*/
export declare const xmlschema: TypeLibrary;