node-schematron
Version:
A pure-JS Schematron implementation for Node, browsers and CLI
14 lines (13 loc) • 464 B
TypeScript
import { FontoxpathOptions } from './types';
export declare class Variable {
name: string;
value: string;
constructor(name: string, value: string);
static reduceVariables(context: any, variables: Variable[], fontoxpathOptions: FontoxpathOptions, initial: Object | null): Object;
static QUERY: string;
static fromJson(json: VariableJson): Variable;
}
export declare type VariableJson = {
name: string;
value: string;
};