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.
17 lines (16 loc) • 527 B
TypeScript
/**
* Pattern for RNG's ``param`` element.
* @author Louis-Dominique Dubeau
* @license MPL 2.0
* @copyright Mangalam Research Center for Buddhist Languages
*/
import { Pattern } from "./base";
/**
* This is a defunct pattern. During the processing of the RNG file all
* ``param`` elements are converted into parameters to [["patterns/data".Data]]
* so we never end up with a converted file that contains an instance of this
* class.
*/
export declare class Param extends Pattern {
constructor(xmlPath: string);
}